java 文件上传中如何获取上传文件的字符集编码

 我来答
读国学的潜思理
2011-02-25 · 超过10用户采纳过TA的回答
知道答主
回答量:27
采纳率:100%
帮助的人:17.7万
展开全部
看看这篇
http://www.javaeye.com/topic/266501
还有这个
http://blog.csdn.net/crackcell/archive/2007/11/22/1898128.aspx

这个是jchardet的地址
http://sourceforge.net/projects/jchardet/

也有人写了用getEncoding
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStreamReader;

public class FileCharset {
public static void main(String[] args) throws FileNotFoundException {
InputStreamReader isr = new InputStreamReader(new FileInputStream(
"Service02.asp"));
System.err.println(isr.getEncoding());
BufferedReader br = new BufferedReader(isr);
}
}

但是不起作用
getEncoding gives you the encoding the reader is using, not what the file is
using. The problem is that there isn't anything in the file that says what
encoding it is using. You can look at some byte patterns to try to
determine whether it's UTF-8, UTF-16BE, or whatever but there's no perfect
rule for it.
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
19ej98
2011-02-25 · TA获得超过1933个赞
知道小有建树答主
回答量:815
采纳率:0%
帮助的人:605万
展开全部
呵呵,这个问题,一句话:微软是美国人的,不是中国人的。

参考资料: 百度一下

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
热情的龟
2011-02-25 · TA获得超过265个赞
知道答主
回答量:396
采纳率:0%
帮助的人:189万
展开全部
人的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式