Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Untitled
SUBMITTED BY:
Guest
DATE:
April 16, 2013, 12:27 a.m.
FORMAT:
Text only
SIZE:
379 Bytes
Raw
Download
Tweet
HITS:
1154
Go to comments
Report
fi = open("myfile.txt", "r", encoding="windows-1252");
fo = open("output.txt", "w", "utf-8");
fo.write(fi.read());
=>
Reader fi = new InputStreamReader(new FileInputStream("myfile.txt"), "windows-1252"));
Writer fo = new OutputStreamWriter(new FileOutputStram("output.txt"), "utf-8"));
fo.write(fi.read()); // well, not exactly this syntax, but...
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus