Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
456 views
in Technique[技术] by (71.8m points)

java如何实现文件流byte[]转码为UTF-8格式的文件流byte[]?

刚刚学习java文件流的输入输出,请教各位大神,已知输入文件流byte[]的编码,实现将其转码为UTF-8编码并输出为文件流[].
public static byte[] filebyteToUTF8(byte[] inputFilebyte){
}


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
String s = new String(inputFilebyte, "输入的编码");
return s.getBytes("utf-8")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...