- 浏览: 363558 次
- 性别:
- 来自: 青岛
-
最新评论
-
贝塔ZQ:
java实现操作word的读取和修改操作,用插件实现的话,可以 ...
java用poi实现对word读取和修改操作 -
yh412:
[flash=200,200][url][img]引用[/im ...
java用poi实现对word读取和修改操作 -
2047699523:
最代码 http://www.zuidaima.com 提供 ...
Java经典代码 -
漫成咖啡:
如何制作卡片型单据 -
geekant:
import com.swing.lx.table 这个包是你 ...
JTable的表头合并
文章列表
jsp:include page="" 和 include file="" 的区别
<%@include file=""%>为静态的 静态include用include伪码实现,定不会检查所含文件的变化,适用于包含静态页面 <jsp:include file="">为动态的 动态include 它总是会检查所含文件中的变化,适合用于包含动态页面,并且可以带参数。
jsp:include page=""/> 运行时插入 <%@ include fi ...
-vm
D:\Program Files\Java\jdk1.6.0_03\bin\javaw.exe
-startup
plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
...
找到原因了,是主题问题。具体原因不清除,解决方法:换个主题就OK了右键桌面>显示属性>主题也可能是WindowBlinds的原因
重启下 eclipse,还是不行哦
出绝招了,呵呵.....上网搜搜
还真的找到解决的方法了,如下:
1.退出 eclipse
2.到[工程目录下]/.metadata/.plugins/org.eclipse.core.runtime
3.把org.eclipse.wst.server.core.prefs和 org.eclipse.jst.server.tomcat.core.prefs这两个文件去掉
4.重启eclipse
select * from table where date between '2009-01-01' and '2010-10-01'
下载uploadify:http://www.uploadify.com/
需要的文件:
uploadify.css
jquery.uploadify.v2.1.0.min.js
swfobject.js
jquery-1.4.2.js
<tr>
<td>学生照片:</td>
<td>
<span id="fileSpan"><input type="file" name="stuPicture" ...
public List<Student> search(Student student) throws SQLException{
StringBuffer sb=new StringBuffer();
sb.append("select * from student where 1=1");
if(student!=null){
if(!student.getStuNumber().equals("")){
sb.append(" and stuNumber='"+student.ge ...
序列化是将对象转换为容易传输的格式的过程!
例如:
可以序列化一个对象,然后使用 HTTP 通过 Internet 在客户端和服务器之间传输该对象。在另一端,反序列化将从该流重新构造对象
package org.cric.other;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
public class DBUtils {
private String driverName ="com.mysql.jdbc.Driver";//MySql驱动
private final String url = &q ...
StringBuffer 更省运行时间
String 先转化成 StringBuffer 的过程
create table test( id int(11) primary key not null auto_increment comment '主键id', user_account varchar(50) not null comment '评估人账号', telephont varchar(15) not null comment '电话', mobile varchar(15) not null comment '手机')auto_increment=1;
auto_increment 设置是否自动排序
comment 设置描述
primary key 主键
...