Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello all java newbie here... I'm writing a java program that has to read from an external text file, (inquiries) and then write out the responses to the inquiries to another external text file.

Now the program will not know the path name of the files until run time when the path name for both the input and output files will be passed via the arguments parameter. The path name will be the same for both files, the actual file names I have defined in two string variables..e.g.

final static string RqstFname = "RqstFile.txt" 
final static string RespFname = "RespFile.txt" 

Now all the examples of File constructor use always have a hardcoded path\file_name string. can I pass a string variable to the File Contructor ??

Thanks very much

share|improve this question
1  
Just wondering... but... did you try it to see what happened? – corsiKa Apr 22 '11 at 23:26
Javadocs say ... of course you can. – Brian Roach Apr 22 '11 at 23:27

2 Answers

up vote 0 down vote accepted
private static final String REQUEST_FILENAME = "RqstFile.txt";
private static final String RESPONSE_FILENAME = "RespFile.txt";

private File requestFile = null;
private File responseFile = null; 

void prepareFiles(String configuredPath)
{
    requestFile = new File(configuredPath, REQUEST_FILENAME);
    responseFile = new File(configuredPath, RESPONSE_FILENAME);
}

public File getRequestFile() { return requestFile; }
public File getResponseFile() { return responseFile; }
share|improve this answer

Sure, you can pass a path string to the File constructor:

public void myMethod(String myString) {
    File myFile = new File(myString);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.