当前位置: 技术问答>java相关
请高手帮忙分析一下这两句代码(关于字符转化)
来源: 互联网 发布时间:2015-11-03
本文导语: DataInput fstream = new DataInputStream(new URL(getCodeBase(), datafile).openStream()); String currentLine=fstream.readLine(); 在上面的语句中,fstream是什么编码格式的??如何转化可以支持中文呢?? | 找到了 import java.io...
DataInput fstream = new DataInputStream(new URL(getCodeBase(), datafile).openStream());
String currentLine=fstream.readLine();
在上面的语句中,fstream是什么编码格式的??如何转化可以支持中文呢??
String currentLine=fstream.readLine();
在上面的语句中,fstream是什么编码格式的??如何转化可以支持中文呢??
|
找到了
import java.io.*;
import java.net.*;
public class Edit16 {
public static void main(String[] args) throws Exception {
InputStream in = new URL("http://www.csdn.net").openStream();
FileOutputStream out = new FileOutputStream("index.html");
int b;
while((b=in.read()) != -1) out.write(b);
out.close();
in.close();
}
}
什么字都支持
|
java.net.URLDecoder
java.net.URLEncoder
研究一下呢
java.net.URLEncoder
研究一下呢
|
楼主,你看看 fxw(漂来)写的吧!!
出了个别定义的,应该没什么问题!!!
假如操作得当的话,没有问题在于!
出了个别定义的,应该没什么问题!!!
假如操作得当的话,没有问题在于!