- 浏览: 38524 次
- 性别:
- 来自: 上海
最新评论
-
leekoob:
对我太有帮助了,感激~~~~
HTTP头部详解及使用Java套接字处理HTTP请求 -
Jasper_Success:
如果我想拼两个参数怎么写?
貌似&不好使
使用Struts2 的result 传递参数 -
guazi:
很不错,正好想找个这样的文章。
HTTP头部详解及使用Java套接字处理HTTP请求 -
xosadan:
学习下.. 很详细
谢谢
HTTP头部详解及使用Java套接字处理HTTP请求
文章列表
方法一:可以用终端安装或卸载软件。
方法二:用系统自带的新立得软件包管理器。
在终端里
安装软件 apt-get install softname1 softname2 softname3......
卸载软件 apt-get remove softname1 softname2 softname3......
卸载并清除配置 apt-get remove --purge softname1
更新软件信息数据库 apt-get update
进行系统升级 apt-get upgrade
搜索软件包 apt-cache search softname1 softnam ...
- 2008-12-30 13:45
- 浏览 1538
- 评论(0)
Quick Setup
SCIM is the name of the program that will allow you to input a CJK language in Ubuntu.
1)Open System>Administration>Language Support
2)and install the support package corresponding to the language you want to input
3)under Ubuntu 8.10, 8.04, 7.10 and 7.04, you will have to ch ...
- 2008-12-30 10:29
- 浏览 6057
- 评论(0)
.tar
解包:tar xvf FileName.tar
打包:tar cvf FileName.tar DirName
(注:tar是打包,不是压缩!)
---------------------------------------------
.gz
解压1:gunzip FileName.gz
解压2:gzip -d FileName.gz
压缩:gzip FileName
.tar.gz 和 .tgz
解压:tar zxvf FileName.tar.gz
压缩:tar zcvf FileName.tar.gz DirName
-------------------- ...
- 2008-12-29 17:11
- 浏览 9338
- 评论(0)
Prototype
Prototype is a JavaScript framework that aims to ease development of dynamic web applications.
Homepage: http://prototype.conio.net
Documentation:
http://blogs.ebusiness-apps.com/jordan/pages/Prototype%20Library%20Info.htm
http://www.sergiopereira.com/articles/prototype.js.ht ...
- 2008-11-03 15:15
- 浏览 1216
- 评论(0)
进
行Web开发关键是要了解超文本传输协议(HTTP),该协议用来传输网页图像以及因特网上在浏览器与服务器间传输的其他类型文件只要你在浏览器上输入一
个URL,最前面的http://就表示使用HTTP来访问指定位置的信息(大部分浏览器还支持其他一些不同的协议,其中FTP就是一个典型例子)
本文从HTTP协议的结构上初步探讨HTTP协议的工作原理和请求响应格式,并最后通过一个使用Java编写的小HTTP服务器验证了如何处理和响应HTTP请求
HTTP由两部分组成:请求和响应当你在Web浏览器中输入一个URL时,浏览器将根据你的
要求创建并发送请求,该请求包含所输入的URL以及一些与浏览器本身相关的 ...
- 2008-11-03 13:59
- 浏览 6564
- 评论(3)
数组是JavaScript提供的一个内部对象,它是一个标准的集合,我们可以添加(push)、删除(shift)里面元素,我们还可以通过for循环遍历里面的元素,那么除了数组我们在JavaScript里还可以有别的集合吗?
由于JavaScript的语言特性,我们可以向通用对象动态添加和删除属性。所以Object也可以看成是JS的一种特殊的集合。下面比较一下Array和Object的特性:
Array:
新建:var
ary = new
Array(); 或 var
ary = [];
增加:ary.push(value);
删除:dele ...
- 2008-10-30 09:30
- 浏览 1750
- 评论(0)
当使用type=“redirectAction” 或type=“redirect”提交到一个action并且需要传递一个参数时。这里是有区别的:
使用type=“redirectAction”时,结果就只能写Action的配置名,不能带有后缀:“.action”
<action name="Login" class="steven.actions.LoginAction">
<result name="success" type="redirectAction">User ...
- 2008-06-16 10:39
- 浏览 4412
- 评论(1)
(一),到struts官方网站下载struts-2.0.11.1-all.zip.URL:http://struts.apache.org/download.cgi#struts20111
(二),打开intelliJ IDEA新建空的Web Application
右键工程加入struts2的jar包:
commons-logging-1.0.4.jar,
freemarker-2.3.8.jar,
ognl-2.6.11.jar,
struts2-core-2.0.11.1.jar,
xwork-2.0.4.jar
(三),一切就绪,开始编码
首先配置web.xml,代码如下:
< ...
- 2008-05-28 15:44
- 浏览 6480
- 评论(0)
(1)利用java.util.Properties读取属性文件
properties属性文件config.properties:
business.class=spring.Business
writer.class=spring.FloppyWriter
InputStream is = this.getClass().getClassLoader().getResourceAsStream("config.properties");
Properties pro = new Properties();
pro.load(is);
Strin ...
- 2008-05-26 17:40
- 浏览 1169
- 评论(0)