程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 選擇-如何在一個方法內返回UTF-8格式的字符串,在另一個方法中調用輸出?

選擇-如何在一個方法內返回UTF-8格式的字符串,在另一個方法中調用輸出?

編輯:編程綜合問答
如何在一個方法內返回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);
}
}

最佳回答:


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

u013400939
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved