- 浏览: 83996 次
- 性别:
- 来自: 上海
最新评论
文章列表
Struts 2 - 文件上传
参考文章:
http://www.dzone.com/tutorials/java/struts-2/struts-2-example/struts-2-file-upload-example-1.html
拦截器(Interceptor):FileUploadInterceptor
通过拦截器的设置,我们可以定义
1.上传文件的类型(allowedTypes)
2.上传文件的扩展名(allowedExtensions)
3.上传文件的最大限制(maximumSize)bytes
<interceptor-ref name=&quo ...
Openwrt 刷机产品准备:1. TP-Link 无线路由(TL-WR703N)2. USB-TTL 串口转换3. 导线若干4. 其他焊接工具Openwrt:Openwrt official web site for 703n:http://wiki.openwrt.org/ru/toh/tp-link/tl-wr703n固件系统:Openwrt bin 下载地址: openwrt-ar71xx-generic-tl-wr703n-v1-squ ...
SOAP是把基于HTTP的WEB技术与XML的灵活性和可扩展性组合在了一起。
准备:
1. 准备一个web server。Tomcat 下载地址 http://tomcat.apache.org/
本例使用版本 apache-tomcat-7.0.54-windows-x64.zip
2. 写一个servlet send用来发送一个SOAP的message并添加一个附件。
3. 写一个servlet receive用来做SOAP message的解析并返回一个response。
4. 写一个简单的html页面触发 servlet A。
开发工具:
eclipse 版本 ...
嵌入式视频:
http://v.youku.com/v_show/id_XNjAzMjk0NTY=.html?f=3045744
PPT:
http://www.zlgmcu.com/philips/ARMStud/ARMStudCD1.asp
http://www.ibm.com/developerworks/cn/java/j-lo-javaio/index.html
http://www.ibm.com/developerworks/cn/java/j-jtp04298.html
http://www.ibm.com/developerworks/cn/webservices/newto/websvc.html
"CREATE LOGIN ["+newDbName+"] WITH PASSWORD=N'"+newDbName+"', DEFAULT_DATABASE=["+newDbName+"], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF;"
// 将CHECK_POLICY=OFF 是降低了windows的密码复杂度
EXEC sp_addlogin 'userName','passWord','defaultDataBase';
//默认使用windows的密码复杂度. ...
/** Cache the hash code for the string */
private int hash; // Default to 0
/** The offset is the first index of the storage that is used. */
private final int offset;
/** The count is the number of characters in the String. */
private final int count;
/** The value is us ...