摘要: This tutorial will walk you on the way to develop a Java servlet that handles file upload to server from client, step by step. A simple Java web application will be developed to demonstrate upload facility. The application consists of:An upload form that allows user to pick up a file to upload.A Jav 阅读全文
posted @ 2013-08-01 10:19 smile_0120 阅读(510) 评论(0) 推荐(0) 编辑
摘要: rownum是oracle预处理字段,默认标序是1,只有记录集已经满足条件后才会进行后续编号。导读:对于Oracle数据库的rownum问题,很多资料都说不支持>,>=,=,between……and,只能用以上符号(,& gt;=,=,between……and 时会提示SQL语法错误,而是经常是查不出一条记录来,还会出现似乎是莫名其妙的结果来,其实您只要理解好了这个 rownum 伪列的意义就不应该感到惊奇,同样是伪列,rownum 与 rowid 可有些不一样,下文中就以实例为大家讲解,便于大家理解学习。假设某个表 t1(c1) 有 20 条记录如果用 select ro 阅读全文
posted @ 2013-08-01 10:16 smile_0120 阅读(445) 评论(0) 推荐(0) 编辑
摘要: .html()用为读取和修改元素的HTML标签.text()用来读取或修改元素的纯文本内容.val()用来读取或修改表单元素的value值。这三个方法功能上的对比.html(),.text(),.val()三种方法都是用来读取选定元素的内容;只不过.html()是用来读取元素的HTML内容(包括其Html标签),.text()用来读取元素的纯文本内容,包括其后代元素,.val()是用来读取表单元素的"value"值。其中.和.text()方法不能使用在表单元素上,而.val()只能使用在表单元素上;另外.html()方法使用在多个元素上时,只读取第一个元素;.val()方法 阅读全文
posted @ 2012-10-31 10:47 smile_0120 阅读(154) 评论(0) 推荐(0) 编辑
摘要: <bean:wirte>的用法bean:write相当于<%=request.getAttribute("something")%> 例子一: 某处设置了request.setAttribute("hello","hello world"); 则在某个jsp页面中,用struts的write标签取出并显示的方式如下: <bean:write name="hello"/>,则页面上显示出hello world。 bean:write常用的属性有如下几个: 1。name,用来指定属性 阅读全文
posted @ 2012-10-29 17:19 smile_0120 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 热点链接(img map area)怎么在一个图片中做多个链接呢?热点链接可以帮你解决。这种效果的实质是把一幅图片划分为不同的热点区域,再让不同的区域进行超链接。要完成地图区域超链接要用到三种标签:<img><map><area>。<img src="图形文件名" usemap="#图的名称"><map name="图的名称"><area shape=形状 coords=区域座标列表 href="URL资源地址"><!--可根据需要定义多 阅读全文
posted @ 2012-10-29 13:59 smile_0120 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 在myeclipse中新建一个java 项目,创建一个MyEclipseGen类,内容如下,运行后按提示输入,就可以产生了。忘了从哪里看到的了,这里记一下,以后找起来方便。import java.io.*;public class MyEclipseGen { private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 199 阅读全文
posted @ 2012-10-08 15:10 smile_0120 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 在cmd中:javac Hello.java 编译然后运行:java HelloWorld 运行传参数给main的话,就在运行的时候传:java HelloWorld 参数1,参数2.。。。 阅读全文
posted @ 2012-07-13 13:38 smile_0120 阅读(129) 评论(0) 推荐(0) 编辑
摘要: //可以向文件里写数据 import java.io.FileNotFoundException; import java.io.PrintStream; public class TestPrintStream1 { public static void main(String[] args) { try { PrintStream out = System.out; PrintStream ps = new PrintStream("./log.txt"); System.setOut(ps); int age = 11; System.out.println(&quo 阅读全文
posted @ 2012-07-13 10:51 smile_0120 阅读(691) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList;import java.util.HashMap;import java.util.Map;import java.util.TreeMap;public class map{public static void main(String[] args) { ArrayList<String> list = new ArrayList<String>(); HashMap<Object,Object> hash = new HashMap<Object,Object>(); TreeMap< 阅读全文
posted @ 2012-07-10 09:57 smile_0120 阅读(687) 评论(0) 推荐(0) 编辑
摘要: public class A { A() { System.out.println("A"); } Contents getInner(){ return new Contents(); } public class Contents { Contents() { System.out.println("Contents"); } public void f() { System.out.println("In Class First's inner Class Contents method f()"); } } publi 阅读全文
posted @ 2012-06-29 15:18 smile_0120 阅读(1299) 评论(0) 推荐(0) 编辑