- 浏览: 1059998 次
- 性别:
- 来自: 南京
文章分类
- 全部博客 (501)
- dwr (6)
- javascript (84)
- oracle (66)
- jsp/servlet (18)
- ant (3)
- 基础知识 (12)
- EXT (10)
- My SQL (10)
- java (71)
- spring (37)
- 学习的对象 (2)
- Linux (24)
- 面试 (1)
- HTML/CSS (11)
- tomcat (11)
- 收藏夹 (2)
- Power Designer (2)
- struts.xml配置文件 (1)
- sturts2 (3)
- myeclipse (8)
- eclipse (7)
- Maven (34)
- SVN (3)
- SAP JCO (2)
- JBOSS (11)
- webservice (8)
- word (1)
- 敏捷开发 (1)
- sybase (4)
- Nexus (3)
- EhCache (3)
- log4j (3)
- Cookie (4)
- Session (4)
- CXF (7)
- AXIS (2)
- SSO (1)
- LDAP (1)
- velocity (2)
- Jquery (5)
- redis (2)
- http (4)
- dojo (1)
- Linux资源监控软件mnon的安装与运用 (1)
- notepad++ (1)
- EA (1)
- UML (1)
- JasperReports (1)
- 权限 (0)
- freemarker (4)
- Spring MVC (1)
- JMS (1)
- activeMQ (1)
- hession (3)
- 安全 (1)
- ibatis (2)
- log (1)
- nginx (1)
最新评论
-
winhbb:
我刚好遇到了一个问题(在可以依赖注入的场合有效):有两个模块A ...
解决Maven项目相互依赖/循环依赖/双向依赖的问题 -
nanjiwubing123:
long3ok 写道你好 XmlOutputFormatter ...
用XStream转换复杂XML -
zhoujianboy:
另外一个方法实现eclipse tomcat 热部署:http ...
eclipse下实现maven项目在tomcat容器热部署方法 -
long3ok:
你好 XmlOutputFormatter 请问这个类是在什么 ...
用XStream转换复杂XML -
ganbo:
总结的好,文章给力。
解决Maven项目相互依赖/循环依赖/双向依赖的问题
经常看到有关xml时提到"application/xml" 和 "text/xml"两种类型, 二者功能一模一样,唯一的区别就是编码格式,text/xml忽略xml头所指定编码格式而默认采用us-ascii编码,而application/xml会根据xml头指定的编码格式来编码:
XML has two MIME types,application/xml and text/xml . These are often used interchangeably, but there is a subtle difference which is why application/xml is generally recommended over the latter.
Let me explain why: according to the standard, text/* -MIME types have a us-ascii character set unless otherwise specified in the HTTP headers. This effectively means that any encoding defined in the XML prolog (e.g. <?xml version=”1.0” encoding=”UTF-8”?>) is ignored. This is of course not the expected and desired behaviour.
To further complicate matters, most/all browser implementations actually implement nonstandard behaviour for text/xml because they process the encoding as if it were application/xml .
So, text/* has encoding issues, and is not implemented by browsers in a standards-compliant manner, which is why using application/* is recommended.
关键字: text/xml application/xml
对于Webservice的应用来说,我们通常都是用UTF-8进行网络传输,但也有通过GBK和GB2312传输的情况,但是在我们Webservice的代码实现中,其实是不用关心具体的传输编码的,因为根据RFC2376的定义,Webservice的引擎(axis,cxf,jaxws..)会根据文件传输的ContentType及XML 声明部分定义的编码自动将网络传输过来的内容(字符串)转换成unicode(jvm运行时的字符串都是以unicode形式存在的)。以下是RFC2376的描述:
例子1:
webservice传输的文件
XML and MIME processors会按照utf-16编码处理该文件
例子2:
webservice传输的文件
XML processors会按照utf-8编码处理该文件
例子3:
webservice传输的文件
XML processors会按照UCS-4编码处理该文件
例子4:
webservice传输的文件
XML processors会按照us-ascii,而不是utf-16编码处理该文件
【参考地址】
http://songyishan.iteye.com/blog/1073969
XML has two MIME types,application/xml and text/xml . These are often used interchangeably, but there is a subtle difference which is why application/xml is generally recommended over the latter.
Let me explain why: according to the standard, text/* -MIME types have a us-ascii character set unless otherwise specified in the HTTP headers. This effectively means that any encoding defined in the XML prolog (e.g. <?xml version=”1.0” encoding=”UTF-8”?>) is ignored. This is of course not the expected and desired behaviour.
To further complicate matters, most/all browser implementations actually implement nonstandard behaviour for text/xml because they process the encoding as if it were application/xml .
So, text/* has encoding issues, and is not implemented by browsers in a standards-compliant manner, which is why using application/* is recommended.
关键字: text/xml application/xml
对于Webservice的应用来说,我们通常都是用UTF-8进行网络传输,但也有通过GBK和GB2312传输的情况,但是在我们Webservice的代码实现中,其实是不用关心具体的传输编码的,因为根据RFC2376的定义,Webservice的引擎(axis,cxf,jaxws..)会根据文件传输的ContentType及XML 声明部分定义的编码自动将网络传输过来的内容(字符串)转换成unicode(jvm运行时的字符串都是以unicode形式存在的)。以下是RFC2376的描述:
例子1:
webservice传输的文件
1.Content-type: application/xml; charset="utf-16" 2. {BOM}<?xml version="1.0"?>
1.Content-type: application/xml; charset="utf-16" 2. {BOM}<?xml version="1.0"?>
XML and MIME processors会按照utf-16编码处理该文件
例子2:
webservice传输的文件
1.Content-type: application/xml 2. <?xml version='1.0'?>
1.Content-type: application/xml 2. <?xml version='1.0'?>
XML processors会按照utf-8编码处理该文件
例子3:
webservice传输的文件
1.Content-type: application/xml 2. <?xml version='1.0' encoding="ISO-10646-UCS-4"?>
1.Content-type: application/xml 2. <?xml version='1.0' encoding="ISO-10646-UCS-4"?>
XML processors会按照UCS-4编码处理该文件
例子4:
webservice传输的文件
1.Content-type: text/xml 2. {BOM}<?xml version="1.0" encoding="utf-16"?>
1.Content-type: text/xml 2. {BOM}<?xml version="1.0" encoding="utf-16"?>
XML processors会按照us-ascii,而不是utf-16编码处理该文件
【参考地址】
http://songyishan.iteye.com/blog/1073969
发表评论
-
个人草稿使用
2017-08-19 09:02 0深入理解JVM: http://www.cnblogs.co ... -
Thread.setDaemon详解
2015-04-24 21:31 895java中线程分为两种类型:用户线程和守护线程。通过Threa ... -
怎么使用 ConcurrentHashMap 才能是线程安全的?
2015-04-13 11:54 1498public class test { public ... -
21,tomcat关闭钩子
2014-12-31 10:36 723在很多环境下,在关闭应用程序的时候需要做一些清理工作。问题在于 ... -
Java NIO使用及原理分析 (一) 【转载】
2014-10-24 00:04 484【转载】: http://blog.csdn.net/wuxi ... -
Java 两个集合取交集
2014-10-14 21:16 3113public static Set intersectionS ... -
Calendar类roll和add的区别
2014-10-10 22:28 489import java.text.SimpleDateForm ... -
Gson通过借助TypeToken获取泛型参数的类型的方法
2014-09-30 00:26 626[size=medium]最近在使用Goo ... -
HashMap的遍历效率讨论
2014-09-27 20:41 825经常遇到对HashMap中的key和value值对的遍历操作, ... -
Java 泛型
2014-06-26 12:44 851关键字说明 ? 通配符类型 <? extends T&g ... -
Java泛型集合的理解
2014-06-26 00:05 502[size=medium]什么是泛型? 泛型(Generic ... -
关于java字节码框架ASM的学习
2014-06-19 19:22 883一、什么是ASM ASM是一个java字节码操纵框架, ... -
Java动态代理详解
2014-06-19 17:41 854Java动态代理详解: http: ... -
Java内存,字符串文章收集
2014-06-18 16:24 706java--String常量池问题的几个例子 . http:/ ... -
Java内存解析
2014-06-18 11:48 769栈、堆、常量池等虽同 ... -
Java的堆与非堆内存
2014-01-07 10:59 713堆(Heap)和非堆(Non-heap)内存 按照官方的说法: ... -
JMX 资料收集
2014-01-07 10:53 444JavaSky的专栏 http://blog.csdn.net ... -
JAVA 注解示例 详解
2013-11-12 09:36 820注解(Annotation) 为我们在代码中天界信息提供了 ... -
Java 泛型详解
2013-11-11 22:35 795http://www.360doc.com/content/1 ... -
Java中的Enum的使用与分析
2013-11-09 12:49 814enum枚举类型:在实际问 ...
相关推荐
同样,在处理XML数据时,可以设置`Content-Type`为`application/xml`或`text/xml`。 ### 4. `Content-Type`与AJAX 在AJAX(Asynchronous JavaScript and XML)请求中,`Content-Type`主要用于指定发送到服务器的...
通常前端通过POST请求向服务器端提交数据格式有4中,分别是”application/x-www-form-urlencoded”格式、” multipart/form-data”格式、”application/json”格式和”text/xml”格式。通常最常见的是”application/...
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png; # 指定需要压缩的文件类型 ...
// 提交方式 public static String REQUEST_METHOD_POST = "POST... public static String MIME_TYPE_TEXTXML = "text/xml;charset=utf-8"; public static String MIME_TYPE_TEXTPLAIN = "text/plain;charset=utf-8";
在Web开发中,AJAX(Asynchronous JavaScript and XML)是一种创建动态、交互性网页的关键技术。它允许在不重新加载整个页面的情况下与服务器交换数据并更新部分网页内容。本示例将探讨如何使用AJAX与PHP配合,处理...
C# RestClient组件下载,...application/xml XML application/x-www-form-urlencoded Form表单 text/plain 纯文本 text/xml XML文本 text/html HTML文本 multipart/form-data 用于上传文件 application/xhtml+xml XHTML
2. 调用`parseFromString`方法,传入XML文本和MIME类型(通常为"application/xml"或"text/xml")。 3. 这个方法会返回一个新的`Document`对象,代表了解析后的XML结构。 现在,我们可以将这两部分结合,创建一个...
4. **application/xml 或 text/xml**:XML是另一种数据交换格式,有时用于POST请求,特别是当需要更复杂的数据结构或与非JavaScript客户端交互时。Content-Type设置为`application/xml`或`text/xml`,消息主体是XML...
AJAX(Asynchronous JavaScript and XML)是一种非常流行的Web开发技术,但是它也存在一些问题,其中之一就是阻塞和跨域名访问问题。在本文中,我们将讨论AJAX的阻塞原因和跨域名解决方案。 AJAX阻塞的原因 当我们...
例如,text/xml 就是指服务器端发送来的内容是一个 XML 格式的文档。 9. application/x-x509-ca-cert application/x-x509-ca-cert 是一个专门用于数字证书的 ContentType 类型。例如,application/x-x509-ca-cert ...
- `.xml` = `text/xml` - `.css` = `text/css` - `.js` = `application/x-javascript` 6. **其他文件** - `.zip` = `application/zip` - `.rar` = `application/x-rar-compressed` - `.exe` = `application/x...
36. xml - text/xml 37. dll - application/octet-stream 该对照表总共列出了 37 种文件类型,涵盖了图片、音频、视频、文档、压缩包等多种格式。每种文件类型都对应着一个 MIME 类型,用于标识文件的类型和格式。 ...
- `application/vnd.oasis.opendocument.text`:OpenDocument Text (ODT) 文档 - `application/vnd.oasis.opendocument.spreadsheet`:OpenDocument Spreadsheet (ODS) 表格 - `application/vnd.oasis....
* XML:text/xml * DLL:application/octet-stream 三、文件类型与浏览器兼容性 在 ASP.NET 开发中,文件类型与浏览器兼容性是一个非常重要的问题。不同的浏览器对文件类型的识别方式不同,例如IE和火狐浏览器对...
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; ``` 除了服务器配置外,还可以通过构建工具(如Webpack、Gulp或Grunt...
1. 确保正确设置Content-Type为"application/xml"或"text/xml",这样客户端才能识别数据格式。 2. 避免XML注入攻击,对用户输入进行适当的验证和清理。 3. 使用合适的编码,避免XML中的特殊字符引发问题。 4. 考虑...
Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <short xmlns="http://webi.org">short</short>*/ //出参是json格式{"statusCode":"2"}
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; ``` 这将开启gzip压缩并指定要压缩的文件类型。 二、PHP编写的gzip...
Web 应用程序技术 ... ... ...* 消息头(Header):包括 Accept、Accept-Language、User-Agent、Host、...表示浏览器支持 text/html、application/xhtml+xml、application/xml 等 MIME 类型,并且优先顺序从左到右排列。
响应 body 的 Content-Type 为 text/xml、text/plain、text/css、application/javascript、app