为了从控制台命令中读取它,您将输入文件放在 eclipse(java) 中的什么位置?

Where do you put input file in eclipse(java) in order to read it from console command?(为了从控制台命令中读取它,您将输入文件放在 eclipse(java) 中的什么位置?)
本文介绍了为了从控制台命令中读取它,您将输入文件放在 eclipse(java) 中的什么位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在用 Eclipse(伽利略版)编写一个 java 程序.程序从控制台命令指定的输入文件中读取简单的用户数据并进行处理.

I am writing a java program in eclipse(galileo version). The program reads simple user data from input file specified at console command and process it.

但是我不确定我应该把这个输入文件放在 eclipse 工作区的什么地方,这样当我在 eclipse 中运行程序并输入输入文件名时,可以找到它并且程序可以处理它.

But I am not sure where I should place this input file inside eclipse workspace, so that when I run program in eclipse and type in input file name, it can be found and program can process it.

有没有办法设置文件路径,以便我可以将输入文件放在任何地方并在运行时指定文件路径?

and is there way to set file path so that I can just place input file anywhere and specified the file path at runtime?

谢谢!

推荐答案

Java进程默认以项目目录为工作目录启动.

The Java process is started with the project directory as the working directory by default.

这篇关于为了从控制台命令中读取它,您将输入文件放在 eclipse(java) 中的什么位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Reliable implementation of PBKDF2-HMAC-SHA256 for JAVA(PBKDF2-HMAC-SHA256 for JAVA 的可靠实现)
Correct way to sign and verify signature using bouncycastle(使用 bouncycastle 签名和验证签名的正确方法)
Creating RSA Public Key From String(从字符串创建 RSA 公钥)
Why java.security.NoSuchProviderException No such provider: BC?(为什么 java.security.NoSuchProviderException 没有这样的提供者:BC?)
Generating X509 Certificate using Bouncy Castle Java(使用 Bouncy Castle Java 生成 X509 证书)
How can I get a PublicKey object from EC public key bytes?(如何从 EC 公钥字节中获取 PublicKey 对象?)