Logica_ 2015-03-24 03:47 采纳率: 0%
浏览 1706
已采纳

如何在一个方法内返回UTF-8格式的字符串,在另一个方法中调用输出?

 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);
}
}
  • 写回答

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;
    }

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 请采纳用户回复 5月11日