`
文章列表
方法一:可以用终端安装或卸载软件。 方法二:用系统自带的新立得软件包管理器。 在终端里 安装软件 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 ...
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 ...
.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 -------------------- ...
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 ...
进 行Web开发关键是要了解超文本传输协议(HTTP),该协议用来传输网页图像以及因特网上在浏览器与服务器间传输的其他类型文件只要你在浏览器上输入一 个URL,最前面的http://就表示使用HTTP来访问指定位置的信息(大部分浏览器还支持其他一些不同的协议,其中FTP就是一个典型例子) 本文从HTTP协议的结构上初步探讨HTTP协议的工作原理和请求响应格式,并最后通过一个使用Java编写的小HTTP服务器验证了如何处理和响应HTTP请求 HTTP由两部分组成:请求和响应当你在Web浏览器中输入一个URL时,浏览器将根据你的 要求创建并发送请求,该请求包含所输入的URL以及一些与浏览器本身相关的 ...
     数组是JavaScript提供的一个内部对象,它是一个标准的集合,我们可以添加(push)、删除(shift)里面元素,我们还可以通过for循环遍历里面的元素,那么除了数组我们在JavaScript里还可以有别的集合吗?     由于JavaScript的语言特性,我们可以向通用对象动态添加和删除属性。所以Object也可以看成是JS的一种特殊的集合。下面比较一下Array和Object的特性:     Array:     新建:var ary = new Array(); 或 var ary = [];     增加:ary.push(value);     删除:dele ...
当使用type=“redirectAction” 或type=“redirect”提交到一个action并且需要传递一个参数时。这里是有区别的: 使用type=“redirectAction”时,结果就只能写Action的配置名,不能带有后缀:“.action” <action name="Login" class="steven.actions.LoginAction"> <result name="success" type="redirectAction">User ...
(一),到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,代码如下: < ...
(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 ...
Global site tag (gtag.js) - Google Analytics