怎麽把string转换成utf8格式的
stringstr=newstring("暗示大家".getbytes(),"utf-8");重新用utf-8编码
或者用urldecoder.decode("xxxxxx","utf-8");重新用utf-8解码
utf-8(8-bitunicodetransformationformat)是一种针对unicode的可变长度字符编码,又称万国码。由kenthompson于1992年创建。现在已经标准化为rfc3629。utf-8用1到6个字节编码unicode字符。用在网页上可以同一页面显示中文简体繁体及其它语言。
scala中怎么把字符的编码方式从gbk转换成utf8
1. 假设你使用了Apache的Commons-io包 Commons IO -
Commons IO Overview,可以使用如下代码:
import java.io.File
import org.apache.commons.io.FileUtils
val file = new File(filename)
content = FileUtils.readFileToString(file, "gbk")
FileUtils.write(file, content, "UTF-8")
2. 如果你用的是JAVA7:
import java.nio.file.{Paths, Files}
val content = io.Source.fromFile(filename, "gbk").mkString
Files.write(Paths.get(filename), content.getBytes("UTF8"))
修改编码为UTF-8后再改回来怎么成乱码了
如果是国外人写的项目,编码方式一般都是UTF-8……建议不要乱更改编码方式,认准再改~~~用EditPlus打开代码查看 发现所用字符集为UTF-8;到myeclipse中设置编码字符集,具体步骤如下:1,Windows--Preferences--General--Content Types--将Java Class File和Text的Default encoding 改为UTF-8---UPDATA2,Windows--Preferences--General--Workspace---将Text file encoding改为UTF-83,右键点击项目--Preferences--Resource--将Text file encoding改为UTF-8
CMD运行JAVA出现编码GBK的不可映射字符处理方法
1、添加了注释的源程序java代码如下。
2、在java源程序路径中打开cmd命令窗口,执行命令:javac HelloWorld.java。
3、执行后报错:HelloWorld.java:12:错误:编码GBK的不可映射字符(0x80)。
4、通过搜索,大致了解到该报错的原因为编码格式的问题。
解决方法一:在编译源程序的时候,添加命令:-encoding utf-8。
如:javac -encoding utf-8 HelloWorld.java。
5、执行后,成功使用javac编译。
6、使用java HelloWorld执行类,成功执行。
7、方法二:保存文件时选择GB2312字体即可。