- 浏览: 9416 次
- 性别:
- 来自: 武汉
最新评论
文章列表
create table A(
aid number primary key,
aname varchar2(20),
adate date,
atext varchar2(50)
);
create sequence a1
start with 1
increment by 1;
create table B(
bid number primary key,
bname varchar2(20),
btype varchar2(10),
...
mysql根据配置文件会限制server接受的数据包大小。
有时候大的插入和更新会被max_allowed_packet 参数限制掉,导致失败。
查看目前配置
show VARIABLES like '%max_allowed_packet%';
显示的结果为:
+--------------------+---------+
| Variable_name | Value |
+--------------------+---------+
| max_allowed_packet | 1048576 |
+---------- ...
fmt:formatDate的输出格式
<fmt:formatDate value="${isoDate}" type="both"/>2004-5-31 23:59:59
<fmt:formatDate value="${date}" type="date"/>2004-4-1
<fmt:formatDate value="${isoDate}" type="time"/>23:59:59
<fmt:formatD ...
DocViewer
DocViewer 是类似百度文库、豆丁 的在线文档阅读程序。基于JAVA语言,跨平台的开源文档在线阅读器。
Windos7 Windows2003 Windos Xp ubuntu11.04 ubuntu11.10 测试通过。linux下请安装相关字体。
一个文档在线阅读的JAVA企业级解决方案。
程序需要openoffice(或LibreOffice 推荐LibreOffice)、
gwt代码 TinyMCE类
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.TextArea;
import com.google.gwt.user.client.ui.VerticalPanel;
pu ...
java.net.URL的使用
以下的例子可以使用于扒取网站的数据
而在实际开发中,很多应用对java.net.URL和IO流进行封装,用返于取得函数回JSON数据;
public static void main(String args[]) throws Exception{
String str = getContentFromURL("http://www.baidu.com");
System.out.println(str);
}
private static String getContentFromURL(String urladdr) ...
如何让一个链接过来,不让浏览器读取缓存
<%
response.setHeader("Cache-Control","no-cache"); //HTTP 1.1
response.setHeader("Pragma","no-cache"); //HTTP 1.0
response.setDateHeader ("Expires", 0); //prevents caching at the proxy server
%>
把这个加到登录后的那个页面;
禁用IE缓存
...