Servlet页面间对象传递的方法
1、request
2、session
3、application
4、cookie
5、其他的...
分类:
其他好文 时间:
2014-08-06 23:15:02
阅读次数:
228
在Form元素的语法中,EncType表明提交数据的格式 用 Enctype 属性指定将数据回发到服务器时浏览器使用的编码类型。 下边是说明: application/x-www-form-urlencoded: 窗体数据被编码为名称/值对。这是标准的编码格式。 multipart/form-dat...
分类:
移动开发 时间:
2014-08-06 22:23:22
阅读次数:
211
form的enctype有三种application/x-www-form-urlencoded在发送前编码所有字符(默认)multipart/form-data不对字符编码。在使用包含文件上传控件的表单时,必须使用该值。text/plain空格转换为 "+" 加号,但不对特殊字符编码。applic...
分类:
Web程序 时间:
2014-08-06 21:53:12
阅读次数:
447
今天在down代码时遇到了如下问题:
[xxx@xxx ~]$ svn co https://xxxxxxxxxxxxx
svn: Can't convert string from 'UTF-8' to native encoding:
svn: xxxxxxxx/include/xml_inc/XML/?\194?\184?\194?\180?\194?\188?\195?\190 mc...
分类:
其他好文 时间:
2014-08-06 19:22:42
阅读次数:
182
JSP共有以下9个内置的对象:
request
用户端请求,此请求会包含来自GET/POST请求的参数
response
网页传回用户端的回应
pageContext
网页的属性是在这里管理
session
与请求有关的会话期
application servlet
正在执行的内容
out
用来传送回应的输出
config servlet的构架...
分类:
Web程序 时间:
2014-08-06 19:08:32
阅读次数:
197
public class DeviceInfo {
private static Application APP = null;
private static String sd_card = Environment.getExternalStorageDirectory()+File.separator+"wlcache";
public static Application getApp...
分类:
移动开发 时间:
2014-08-06 19:08:22
阅读次数:
305
这个错误通常发生在iOS7当中,可能是缓存的导致的问题。
解决步骤:
右击Finder,选择 Go to Folder
复制上:“~/Library/Application Support/iPhone Simulator/”
这回打开iPhone Simulator的文件夹,然后删除其中的7.x 文件夹
翻译编辑自:http://stackoverflow....
分类:
移动开发 时间:
2014-08-06 19:02:02
阅读次数:
269
原文参考http://msdn.microsoft.com/en-us/library/dn440731(v=pandp.60).aspx一、简介日志通常满足两个主要的要求:1、监控应用程序性能并提供信息。性能方面,日志可以监控程序内部发生了什么,有时也监控程序外部发生了什么。2、更重要的是用于审计...
分类:
移动开发 时间:
2014-08-06 18:54:16
阅读次数:
279