数据是这样的"\314\251\270",得到就是这样的了,要把这个转换成汉字字符串
1条回答 默认 最新
- threenewbee 2018-11-26 12:07关注
import java.io.UnsupportedEncodingException; public class HelloWorld { public static String toOct(String s) { String result = ""; byte[] bytes = s.getBytes(); for (byte b : bytes) { int b1 = b; if (b1 < 0) b1 = 256 + b1; result += "\\" + (b1 / 64) % 8 + "" + (b1 / 8) % 8 + "" + b1 % 8; } return result; } public static String getOct(String s) throws UnsupportedEncodingException { String[] as = s.split("\\\\"); byte[] arr = new byte[as.length - 1]; for (int i = 1; i < as.length; i++) { int sum = 0; int base = 64; for (char c : as[i].toCharArray()) { sum += base * ((int)c - '0'); base /= 8; } if (sum >= 128) sum = sum - 256; arr[i - 1] = (byte)sum; } return new String(arr,"UTF-8"); //如果还有乱码,这里编码方式你可以修改下,比如试试看unicode gbk等等 } public static void main(String[] args) throws java.io.UnsupportedEncodingException { String s = "123中文"; String o = toOct(s); System.out.println(o); s = getOct(o); System.out.println(s); } }
\061\062\063\344\270\255\346\226\207
123中文本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 2无用 2
悬赏问题
- ¥60 如何批量获取json的url
- ¥15 对法兰连接元件所承受的表面载荷等效转化为法兰开孔接触面上的等效表面载荷?
- ¥15 comsol仿真压阻传感器
- ¥15 Python线性规划函数optimize.linprog求解为整数
- ¥15 llama3中文版微调
- ¥15 pg数据库导入数据序列重复
- ¥15 三分类机器学习模型可视化分析
- ¥15 本地测试网站127.0.0.1 已拒绝连接,如何解决?(标签-ubuntu)
- ¥50 Qt在release捕获异常并跟踪堆栈(有Demo,跑一下环境再回答)
- ¥30 python,LLM 文本提炼