post跨域get不跨域_request获取请求的域名

post跨域get不跨域_request获取请求的域名转载博客一、当只有addRequestProperty的时候[html]viewplaincopyprint?URL url = new URL(“http://localhost:8080/net/listnets.jsp”);              URLConnection connection = url.openConnection();              conne

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

转载博客

一、当只有addRequestProperty的时候

  1. URL url = new URL(“http://localhost:8080/net/listnets.jsp”);  
  2.             URLConnection connection = url.openConnection();  
  3.             connection.addRequestProperty(“name”, “asad”);  
  4.             connection.addRequestProperty(“name”, “komal”);  
  5.             connection.addRequestProperty(“class”, “10th”);  
  6.             connection.addRequestProperty(“Address”, “Delhi 17”);  
  7.   
  8.             Map map = connection.getRequestProperties();  
  9.             Set set = map.entrySet();  
  10.   
  11.             Iterator iterator = set.iterator();  
  12.             while (iterator.hasNext()) {  
  13.                 System.out.println(iterator.next());  
  14.             }  
 URL url = new URL("http://localhost:8080/net/listnets.jsp");
                URLConnection connection = url.openConnection();
                connection.addRequestProperty("name", "asad");
                connection.addRequestProperty("name", "komal");
                connection.addRequestProperty("class", "10th");
                connection.addRequestProperty("Address", "Delhi 17");

                Map map = connection.getRequestProperties();
                Set set = map.entrySet();

                Iterator iterator = set.iterator();
                while (iterator.hasNext()) {
                    System.out.println(iterator.next());
                }
  1. 输出结果:name=[komal, asad]  
  2. Address=[Delhi 17]  
  3. class=[10th]  
输出结果:name=[komal, asad]
Address=[Delhi 17]
class=[10th]

二、当只有setRequestProperty的时候

  1. URL url = new URL(“http://localhost:8080/net/listnets.jsp”);  
  2. URLConnection connection = url.openConnection();  
  3. connection.setRequestProperty(“name”, “komal”);  
  4. connection.setRequestProperty(“name”, “asad”);  
  5. connection.setRequestProperty(“class”, “10th”);  
  6. connection.setRequestProperty(“Address”, “Delhi 17”);  
  7.   
  8. Map map = connection.getRequestProperties();  
  9. Set set = map.entrySet();  
  10.   
  11. Iterator iterator = set.iterator();  
  12. while (iterator.hasNext()) {  
  13.     System.out.println(iterator.next());  
  14. }  
             URL url = new URL("http://localhost:8080/net/listnets.jsp");
                URLConnection connection = url.openConnection();
                connection.setRequestProperty("name", "komal");
                connection.setRequestProperty("name", "asad");
                connection.setRequestProperty("class", "10th");
                connection.setRequestProperty("Address", "Delhi 17");

                Map map = connection.getRequestProperties();
                Set set = map.entrySet();

                Iterator iterator = set.iterator();
                while (iterator.hasNext()) {
                    System.out.println(iterator.next());
                }
  1. 输出结果:  
输出结果:
  1. name=[asad]  
  2. Address=[Delhi 17]  
  3. class=[10th]  
name=[asad]
Address=[Delhi 17]
class=[10th]
  1. 注意name的设置,会发生覆盖的作用。  
注意name的设置,会发生覆盖的作用。

三、当先set后add的时候

 
 
  1. URL url = new URL(“http://localhost:8080/net/listnets.jsp”);  
  2.         URLConnection connection = url.openConnection();  
  3.         connection.setRequestProperty(“name”, “asad”);  
  4.         connection.addRequestProperty(“name”, “komal”);  
  5.         connection.addRequestProperty(“class”, “10th”);  
  6.         connection.addRequestProperty(“Address”, “Delhi 17”);  
  7.   
  8.         Map map = connection.getRequestProperties();  
  9.         Set set = map.entrySet();  
  10.   
  11.         Iterator iterator = set.iterator();  
  12.         while (iterator.hasNext()) {  
  13.             System.out.println(iterator.next());  
  14.         }  
URL url = new URL("http://localhost:8080/net/listnets.jsp");
        URLConnection connection = url.openConnection();
        connection.setRequestProperty("name", "asad");
        connection.addRequestProperty("name", "komal");
        connection.addRequestProperty("class", "10th");
        connection.addRequestProperty("Address", "Delhi 17");

        Map map = connection.getRequestProperties();
        Set set = map.entrySet();

        Iterator iterator = set.iterator();
        while (iterator.hasNext()) {
            System.out.println(iterator.next());
        }
  1. 输出结果  
输出结果
  1. name=[komal, asad]  
  2. Address=[Delhi 17]  
  3. class=[10th]  
name=[komal, asad]
Address=[Delhi 17]
class=[10th]
  1.    
 
  1.    
 

四、当先add后set的时候

  1. URL url = new URL(“http://localhost:8080/net/listnets.jsp”);  
  2.         URLConnection connection = url.openConnection();  
  3.         connection.addRequestProperty(“name”, “komal”);  
  4.         connection.setRequestProperty(“name”, “asad”);  
  5.         connection.addRequestProperty(“class”, “10th”);  
  6.         connection.addRequestProperty(“Address”, “Delhi 17”);  
  7.   
  8.         Map map = connection.getRequestProperties();  
  9.         Set set = map.entrySet();  
  10.   
  11.         Iterator iterator = set.iterator();  
  12.         while (iterator.hasNext()) {  
  13.             System.out.println(iterator.next());  
  14.         }  
URL url = new URL("http://localhost:8080/net/listnets.jsp");
        URLConnection connection = url.openConnection();
        connection.addRequestProperty("name", "komal");
        connection.setRequestProperty("name", "asad");
        connection.addRequestProperty("class", "10th");
        connection.addRequestProperty("Address", "Delhi 17");

        Map map = connection.getRequestProperties();
        Set set = map.entrySet();

        Iterator iterator = set.iterator();
        while (iterator.hasNext()) {
            System.out.println(iterator.next());
        }

 

  1. name=[asad]  
  2. Address=[Delhi 17]  
  3. class=[10th]  
name=[asad]
Address=[Delhi 17]
class=[10th]

五、结

setRequestProperty方法,如果key存在,则覆盖;不存在,直接添加。

addRequestProperty方法,不管key存在不存在,直接添加。

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/195269.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 动态标题怎么写_网站主题

    动态标题怎么写_网站主题1.快并快乐着!2.共享世界,有你才精彩!3.你共享一小文件,对于你来说是一小文件,但对于世界上的骡友来说是一个大文件。4.分享互联网5.梦里寻她千百度,蓦然回首,那资源竟在VeryCD下载处。6.想象力比知识更重要。7.学历代表过去,学习力掌握将来。8.把自己当傻瓜,不懂就问,你会学的更多。9.学问和修持的力量,来使人受益,就等于欠了一份债。10.不是事业为了思想,而是思想为了事业。11.睡觉是为了踏实地工作,工作是为了踏实地睡觉。12.人生在世界是短暂的,对这短暂的人生,我们最好的报答就是工作。13.

  • mysql和mongodb的区别是什么_mongodb和mysql的区别是什么?区别详细介绍

    mysql和mongodb的区别是什么_mongodb和mysql的区别是什么?区别详细介绍对于mongodb和mysql你应该都很清楚了吧,那么他们两个之间的区别你知道吗?很多人对于mongodb和mysql的区别都不是很清楚,下面一起来了解一下吧。一、mongodb和mysql的区别有哪些?对于这两者的区别,我们可以从以下的九个方面来谈一下。1、数据库模型mongodb-非关系型;mysql-关系型;2、存储方式mongodb-以类JSON的文档的格式存储;mysql-不同引擎有不同…

  • halcon 角度转弧度方法「建议收藏」

    halcon 角度转弧度方法「建议收藏」radianstodegreesdeg(a)弧度转角度degreestoradiansrad(a)角度转弧度

  • private、 protected、 public、 internal 修饰符建议收藏

    private:私有成员,在类的内部才可以访问。protected:保护成员,该类内部和继承类中可以访问。public:公共成员,完全公开,没有访问限制。internal:在同一命名空

    2021年12月20日
  • 什么是用户态和内核态_进程的用户态和内核态

    什么是用户态和内核态_进程的用户态和内核态要了解什么是用户态,什么是内核态,我们需要先了解什么是进程的用户空间和内核空间:Linux虚拟内存的大小为2^32(在32位的x86机器上),内核将这4G字节的空间分为两部分。最高的1G字节(从虚地址0xC0000000到0xFFFFFFFF)供内核使用,称为“内核空间”。而较低的3G字节(从虚地址0x00000000到0xBFFFFFFF),供各个进程使用,称为“用户空间”。也就是说,在这4G的…

  • describing people听力原文_你美国也配谈道德

    describing people听力原文_你美国也配谈道德  美国著名公司PeopleSoft,名字也代表旗下的一系列ERP产品,一系列的解决方案,有一整套的开发工具,04年被oracle以103亿美元收购。 在某银行的CRM,EPM项目中有幸认识Michaelzhou,非常感谢他的帮助,使我认识到底什么才是PeopleSoft,暂且不说PeopleSoft的产品有多好,本文仅讨论PeopleSoft的开发模式。 

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号