Java,URL输出在java输出中不同

时间:2013-07-09 02:51:44

标签: java url unicode utf-8 uri

我对URI和网址有疑问 当我通过网址是好工作但结果是最糟糕需要帮助!!

因为我的代码看起来像这样。

import java.io.*;
import java.net.*;
import java.net.URL;

public class isms {
    public static void main(String[] args) throws Exception {
        try {


       String user = new String ("boo");
       String pass = new String ("boo");
       String dstno = new String("60164038811"); //You are going compose a message to this destination number.
       String msg = new String("你的哈达哈达!"); //Your message over here
       int type = 2; //for unicode change to 2, normal will the 1.
       String sendid = new String("isms"); //Malaysia does not support sender id yet.

            // Send data
            URI myUrl = new URI("http://www.isms.com.my/isms_send.php?un=" + user + "&pwd=" + pass 
                + "&dstno=" + dstno + "&msg=" + msg + "&type=" + type + "&sendid=" + sendid);
            URL url = new URL(myUrl.toASCIIString());

            URLConnection conn = url.openConnection();
            conn.setDoOutput(true);

            // Get the response
            BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = rd.readLine()) != null) {
                // Print the response output...
                System.out.println(line);
            }      
            rd.close();

            System.out.println(url);
        } catch (Exception e) {
            e.printStackTrace();
        }



    }
}

网络中的输出是不同的.. 我的java输出是

  

你的哈达哈达!

但是我的网站是

  

ÄãμĹþ'ï¹þ'ï!

帮助!!

1 个答案:

答案 0 :(得分:0)

String user = new String ("boo");

你不需要(也不应该)用Java做new String - String user = "boo";没问题。

String msg = new String("你的哈达哈达!");

在源代码中编写非ASCII字符意味着您必须将-encoding标记设置为javac以匹配您保存文本文件的编码。您可以将.java文件保存为UTF-8,但未将您的构建环境配置为在编译时使用UTF-8。

如果您不确定自己是否正确,可以在此期间使用ASCII安全\u转义:

String msg = "\u4F60\u7684\u54C8\u8FBE\u54C8\u8FBE!";  // 你的哈达哈达!

最后:

URI myUrl = new URI("http://www.isms.com.my/isms_send.php?un=" + user + "&pwd=" + pass 
            + "&dstno=" + dstno + "&msg=" + msg + "&type=" + type + "&sendid=" + sendid);

当您将URI放在一起时,您应该对包含在字符串中的每个参数进行URL转义。否则,值中的任何&或其他无效字符都将破坏查询。这也允许您选择用于创建查询字符串的字符集。

String enc = "UTF-8";
URI myUrl = new URI("http://www.isms.com.my/isms_send.php?" +
    "un=" + URLEncoder.encode(user, enc) +
    "&pwd=" + URLEncoder.encode(pass, enc) +
    "&dstno=" + URLEncoder.encode(dstno, enc) +
    "&msg=" + URLEncoder.encode(msg, enc) +
    "&type=" + URLEncoder.encode(Integer.toString(type), enc) +
    "&sendid=" + URLEncoder.encode(sendid, enc)
);

enc的正确值取决于您要连接的服务,但UTF-8是一个很好的猜测。