<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    sunfruit[請(qǐng)?jiān)L問http://www.fruitres.cn]

    --我相信JAVA能走得更遠(yuǎn) QQ:316228067

    [JAVA]使用HttpURLConnection進(jìn)行POST方式提交

    --sunfruit

    用HttpURLConnection進(jìn)行Post方式提交,下面給出一個(gè)例子

        URL url = null;
        HttpURLConnection httpurlconnection = null;
        try
        {
          url = new URL("http://xxxx");

          httpurlconnection = (HttpURLConnection) url.openConnection();
          httpurlconnection.setDoOutput(true);
          httpurlconnection.setRequestMethod("POST");
          String username="username=02000001";
          httpurlconnection.getOutputStream().write(username.getBytes());
          httpurlconnection.getOutputStream().flush();
          httpurlconnection.getOutputStream().close();
          int code = httpurlconnection.getResponseCode();
          System.out.println("code   " + code);

        }
        catch(Exception e)
        {
          e.printStackTrace();
        }
        finally
        {
          if(httpurlconnection!=null)
            httpurlconnection.disconnect();
        }

    其中HttpURLConnection中的addRequestProperty方法,并不是用來添加Parameter 的,而是用來設(shè)置請(qǐng)求的頭信息,比如:
           setRequestProperty("Content-type","text/html");
           setRequestProperty("Connection",   "close");
           setRequestProperty("Content-Length",xxx);

    當(dāng)然如果不設(shè)置的話,可以走默認(rèn)值,上面的例子中就沒有進(jìn)行相關(guān)設(shè)置,但是也可以正確執(zhí)行

    posted on 2006-03-13 15:47 sunfruit 閱讀(38052) 評(píng)論(12)  編輯  收藏 所屬分類: JAVA SE & EE

    評(píng)論

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2006-07-31 16:55 南柯一夢(mèng)

    我對(duì)你的崇拜不是一句兩句能說清!!  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2006-08-01 14:57 sun fruit

    呵呵,不敢當(dāng),相互學(xué)習(xí)吧  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交[未登錄] 2007-07-11 17:04 sun

    崇拜ing.....

    還有個(gè)問題要請(qǐng)教
    在httpurlconnection.setRequestMethod("POST");下邊加上
    了httpurlconnection.setRequestProperty("Content-type", "text/html");
    為什么就不行了?得不到參數(shù)值  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2007-07-11 20:53 fruit

    加上httpurlconnection.setRequestProperty("Content-type", "text/html"); ,表明提交的類型是text/html,這個(gè)只能通過數(shù)據(jù)流獲得  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2007-07-24 18:26 anosn

    非常感謝~~!  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交不成功 2008-03-26 17:25 肖圣春

    public class PostDemo {
    private static String FILE_NAME = SubmitMMSMsg.dir + ".zip";
    static URL url = null;
    static HttpURLConnection httpurlconnection = null;
    public static void doPost(){
    try
    {
    url = new URL("http://mpublish.maxtong.com/interface.php");

    httpurlconnection = (HttpURLConnection) url.openConnection();
    httpurlconnection.setDoOutput(true);
    httpurlconnection.setRequestMethod("POST");
    // String name ="zip_name=";
    // File f = new File("d:\\1.txt");
    // FileOutputStream is = new FileOutputStream(f);
    // BufferedOutputStream bos = new BufferedOutputStream(is);
    // bos.write(getFileString().getBytes());
    httpurlconnection.getOutputStream().write(getFileString().getBytes());
    httpurlconnection.getOutputStream().flush();
    httpurlconnection.getOutputStream().close();
    int code = httpurlconnection.getResponseCode();
    System.out.println("code " + code);
    System.out.println(httpurlconnection.getResponseMessage());  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2008-06-03 16:09 dengqianyong

    httpurlconnection.getOutputStream().write(username.getBytes());
    httpurlconnection.getOutputStream().write("&".getBytes());
    httpurlconnection.getOutputStream().write(password.getBytes());
    httpurlconnection.getOutputStream().flush();
    httpurlconnection.getOutputStream().close();

    比如這段代碼是通過post方法登入服務(wù)器,然后該怎么做?我想拿到登入后的下個(gè)頁面該怎么寫代碼?請(qǐng)指教!謝謝
      回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2008-08-26 11:52 張麗云

    大俠:
    如果我要跨域上傳文件應(yīng)該怎么辦呢,望多多指教。qq:379878654 回復(fù)郵箱也可以,謝謝了  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2011-11-11 11:37 1111111111

    很好的例子,3q  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交[未登錄] 2012-07-21 21:18 aaa

    aaaaaaaaaaaaaaaaaaaaaaaa  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2013-04-19 20:52 嵐剎

    很好!謝謝!  回復(fù)  更多評(píng)論   

    # re: [JAVA]使用HttpURLConnection進(jìn)行POST方式提交 2013-09-17 11:12 溫云

    我提交過去的中文是亂碼,怎么解決?轉(zhuǎn)碼都不行  回復(fù)  更多評(píng)論   

    主站蜘蛛池模板: 性做久久久久久免费观看| 亚洲国产成人VA在线观看| jzzijzzij在线观看亚洲熟妇| 黄页网站在线观看免费| 亚洲国产精彩中文乱码AV| 一级毛片在线免费视频| 久久久亚洲欧洲日产国码农村| 91精品全国免费观看青青| 亚洲剧情在线观看| 国产乱色精品成人免费视频| 日韩在线永久免费播放| 亚洲av无码乱码国产精品| 蜜臀91精品国产免费观看| 日韩插啊免费视频在线观看| 国产精品观看在线亚洲人成网| 免费在线观看黄网| 8x8x华人永久免费视频| 亚洲成无码人在线观看| 亚洲AV无码一区二区三区在线观看 | 99在线热视频只有精品免费| 亚洲国产成人无码AV在线影院| 成人免费无码大片A毛片抽搐色欲| 国产成人精品亚洲2020| 国外亚洲成AV人片在线观看| 国产又黄又爽胸又大免费视频| 亚洲高清国产AV拍精品青青草原| 无码人妻久久一区二区三区免费 | 国产免费69成人精品视频 | CAOPORN国产精品免费视频| 亚洲国产精品美女| 国产成人综合亚洲亚洲国产第一页| 男女一进一出抽搐免费视频 | jlzzjlzz亚洲jzjzjz| 亚洲女久久久噜噜噜熟女| 99久久免费精品高清特色大片| 亚洲一区免费在线观看| 国产AV无码专区亚洲AV毛网站 | 亚洲无码日韩精品第一页| 最近2019中文字幕免费看最新| 国产亚洲漂亮白嫩美女在线 | 亚洲精品成人网久久久久久|