package com.secutiry.rsa;
import java.util.Scanner;
public class Prtest {
public String Phintx(){
Scanner cc =new Scanner(System.in);
//下马这行会报错,选择try catch 或者 throw declaration
//选择try catch 则无法return ,选择throw declaration 则在主方法中会报异常
String tt =new String(cc.next().getBytes(),"utf-8");
return tt;
}
public static void main(String[] args) {
Prtest prtest = new Prtest();
String tx = prtest.Phintx();
System.out.println(tx);
}
}
如何在一个方法内返回UTF-8格式的字符串,在另一个方法中调用输出?
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
threenewbee 2015-03-24 03:51关注cc.next()没有获取到字符串吧,你可以用try catch吃掉:
Scanner cc =new Scanner(System.in);
String tt = "";
try {
//下马这行会报错,选择try catch 或者 throw declaration
//选择try catch 则无法return ,选择throw declaration 则在主方法中会报异常
String tt =new String(cc.next().getBytes(),"utf-8");
} catch {}
return tt;
}本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报