Results 1 to 5 of 5
- 10-14-2009, 10:59 PM #1
Member
- Join Date
- Mar 2009
- Posts
- 70
- Rep Power
- 0
Backslash, File directories, and streams
I dont really know where i should post this, so im just posting it here.
I have a program, and part of it is to read a file, find a string, modify the string, and write it back to the file. The string in question is a file directory on windows, so it has backslashes (\).
The originial string from the file:
"string filename" ["C:\\My\\Fike\\Path\\toChange\\ta-00042"]
I read the string using
And read all the lines of the code, split it usingJava Code:FileInputStream fis = new FileInputStream((test)); BufferedReader is = new BufferedReader(new InputStreamReader(fis));
I need to change the String with a new filepath, and written out with 2 backslashes, like the originial. I make a new string, and use a string containing the directory. The directory was taken from a JTextField, so only 1 slash.Java Code:String[] lines = file.split("\n");
How can i replace all these '\' with '\\'? Do i need to add more to have the FileWriter print the correct amount of literals?
When the FileInputStream reads the file, does it do anything to the backslashes?
I have tried
but i am getting the same output as input with System.out.println();Java Code:String.replaceAll("\\","\\\\");
- 10-14-2009, 11:37 PM #2
- 10-15-2009, 12:39 AM #3
Member
- Join Date
- Mar 2009
- Posts
- 70
- Rep Power
- 0
that wouldnt work in windows, would it? Unix uses / and windows uses \
-
- 10-15-2009, 09:54 AM #5
Senior Member
- Join Date
- Aug 2008
- Posts
- 384
- Rep Power
- 5
Similar Threads
-
How to handle \ (backslash) in regular expressions
By federal102 in forum New To JavaReplies: 1Last Post: 11-02-2008, 01:33 AM -
Is there any way to transfer the file Streams from one servlet to another servlet .
By HenaPriyadarsini in forum Java ServletReplies: 0Last Post: 08-30-2008, 11:52 AM -
Directories
By KevMeistr in forum New To JavaReplies: 6Last Post: 06-11-2008, 04:03 PM -
getting paths and directories
By marco in forum Java AppletsReplies: 3Last Post: 11-25-2007, 07:28 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks