`
desert3
  • 浏览: 2160641 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
社区版块
存档分类
最新评论
文章列表
通过HTTP GET方式向后台传递中文参数,后台从request..getParameter ()中取值。在tomcat开发环境下,从request中取到的值是乱码,在resin运行环境下,从request中取到的值是正常的(所有编码相关的地方都设置为UTF-8:包括jsp文件编码,response响应编码,CharacterEncodingFilter) 通过下面的方式在tomcat下能取到正常的值,但resin下得到的值是乱码 String name = new String(request.getParameter("name").getBytes("ISO ...
ftp://username:password@url
HTTP/1.1开始,默认支持HTTP的断点续传功能 HTTP断点续传编码实现,根据HTTP断点续传原理,服务器代码解析RANGE就行 Vsftp,FileZilla FTP服务器都支持断点续传功能,FileZilla Client FTP客户端支持断点续传功能 Vsftp,FileZilla FTP服务器支持限速,Ip限制 现在的FTP服务器一般都支持很多默认的通用功能 断点续传:是在下载或上传时,如果碰到网络故障或者其他原因使得连接断掉,重新连接后可以从已经上传或下载的部分开始继续上传下载以后未上传下载的部分,而没有必要重头开始上传下载。用途可以节省时间,提高速度。 HTTP断点续传的原 ...
Windows压缩 1,右键要压缩的文件或者文件夹,选择7-Zip,添加到文档,在弹出的对话框中压缩格式选择Tar,点击确定,生产Tar文件a.tar 2,选择刚生成的Tar文件,右键选择7-Zip,打开文档 3,往上回一层目录,看到相应的tar文件,然后点击【添加】,然后在弹出的对话框中选择压缩格式为GZip,然后点击确定,完成 Linux解压 tar命令 x:解压 z:gzip属性 v:显示过程 -f: 使用档案名字,这个参数是最后一个参数,后面只能接档案名。 tar -xzvf a.tar.gz //解压tar.gz到当前目录
Axis2默认把Service类中所有的public方法都发布成web service的operation(就是对外公布的ws接口) 在services.xml用如下方法可以排除不需要公开的public方法 <service name="wsService" scope="application"> <description> test Web Service </description> <messageReceivers> <me ...
发现pb报错误:the data type,'anyType' is not supported 在wsdl文件中查看,发现anyType对象对应的项目是BeansException, 然后查看对应的ws代码,发现是在实现ApplicationContextAware接口时候BeansException加入到代码里面的 去掉BeansException后,发现pb能正常调用了
""(双引号 精确匹配) site:www.iteye.com 学习笔记(指定搜索网站) java学习笔记 -多线程(减去) intitle:javaeye inurl:javaeye clean site:playframework.org/documentation/1.2.3(指定网站目录搜索) 转自:http://www.iteye.com/topic/798142
m.weather.com.cn 天气插件 http://www.tool.la/QQCode/ qq在线状态代码生成器
WindowsError: [Error 2] The system cannot find the file specified WindowsError: [Error 3] The system cannot find the path specified WindowsError: [Error 5] Access is denied WindowsError: [Error 13] The process cannot access the file because it is being used by another process
Aixs2 RPC客户端报错 org.apache.axis2.AxisFault: Transport error: 411 Error: Length Required at org.apache.axis2.transport.http.HTTPSender.handleResponse(HTTPSender.java:310) [axis2-transport-http-1.5.2.jar:na] at org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:200) [axis2-tran ...
使用axis2开发webservice,部署到tomcat上没有问题,部署到resin上报下边异常。 [INFO] java.lang.IllegalArgumentException: property javax.xml.stream.isCoalesci ng not supported [11:07:12.390] {main} java.lang.IllegalArgumentException: property "javax.xml.st ream.isCoalescing" not supported [11:07:12.390] {main} ...
1,相关概念 SOAP:simple object access protocal 简单对象访问协议是一种轻量的、简单的、基于 XML 的协议,它被设计成在 WEB 上交换结构化的和固化的信息。是一种应用协议,和各种传输协议(HTTP,SMTP,MIME)结合使用 Wsdl: Web Services Description Language用来描述Web服务和说明如何与Web服务通信的XML语言(领域专属语言) WSDL是服务接口,从外部看它就是服务提供者,没有WSDL就相当于没有服务提供者, SOAP是服务者和消费者建立的双向通信通道,服务方提供给消费方WSDL,这是两者达成的共识。SOA ...
IOError: cannot identify image file:表示路径对应的文件不是有效的图片 ValueError: images do not match:表示图片大小和box对应的宽度不一致,参考API说明:Pastes another image into this image. The box argument is either a 2-tuple giving the upper left corner, a 4-tuple defining the left, upper, right, and lower pixel coordinate, or None (sam ...
SELECT DBMS_METADATA.GET_DDL('INDEX',u.index_name) FROM USER_INDEXES u  where u.table_name = 'SHOP_PD';
#! /usr/bin/env python # -*- coding: UTF-8 -*- #@author zcwang3@gmail.com #@version 2010-10-20 15:47 #图片处理模块(缩放) import BaseUtil import os import Image srcImgFolder = srcImgFolder = r"D:\javaResize" def resizeFold(dir_proc): for file in os.listdir(dir_proc): f ...
Global site tag (gtag.js) - Google Analytics