`
phoebird
  • 浏览: 117651 次
  • 性别: Icon_minigender_1
  • 来自: 重庆
社区版块
存档分类
最新评论
文章列表
运行本实例的前提:去网上下载一个叫jxl.jar的jar包,然后放到你的项目里WEB-INF/lib下. package gzu.lyq.jxl; import java.io.FileOutputStream; import java.io.OutputStream; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import jxl.*; import ...
function request(paras){//js接受URL参数 var url = location.href; var paraString = url.substring(url.indexOf("?")+1,url.length).split("&"); var paraObj = {} for (i=0; j=paraString[i]; i++){ pa ...
items结尾的 [ xxxx,xxx,gbsfgs,]   多了一个逗号
<%@page contentType="text/html" pageEncoding="UTF-8"%> <% request.setAttribute("base", request.getContextPath()); %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8& ...
<%@page contentType="text/html" pageEncoding="UTF-8"%> <% request.setAttribute("base", request.getContextPath()); %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8& ...
<%@page contentType="text/html" pageEncoding="UTF-8"%> <% request.setAttribute("base", request.getContextPath()); %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8& ...
<%@page contentType="text/html" pageEncoding="UTF-8"%> <% request.setAttribute("base", request.getContextPath()); %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8& ...
<%@page contentType="text/html" pageEncoding="UTF-8"%> <% request.setAttribute("base", request.getContextPath()); %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8& ...
记录petstore的安装过程,便于查看。   1、运行时,控制台显示:       发生连接认证失败。原因:用户标识或密码无效   解决方法:在GlassFish服务器上配置连接池时,只保留五个属性即,数据库名,用户名,用户密码,服务器,端口号, 其它缺省的属性一律删除. 之后,用"ping"来测试.  最后从新启动服务器glassfish   2、配置数据库 jdbc:derby://localhost:1527/petstore [APP 上的 APP]   注意必须和项目的数据库必须一致,否则会出现无法连接的问题。此外还应该注意 bp-pro ...
http://blog.csdn.net/kevinluck/archive/2007/04/14/1564715.aspx 都说想提高技术的最好的办法就是学习比你强的人的技术 这些年一直孤陋寡闻刚刚知道原来Sun 公司 还专门写了一个宠物店的DEMO ,于是决定学习一下。 本人环境  jdk1.6.0_01 windows xp盗版(咱以前可都是用2003的强人呀 装64位vista把系统装挂后 2003盘找不到只好用xp) 比2003好用 netbeans5.5中文版(郁闷E文版的丢了 浪费了一个学E文的机会)从http://gceclub.sun.com.cn/dow ...
var value=window.parent.getMethod();//调用父窗口的方法javascript:window.location="地址";//在当前窗口打开新的窗口$.getJSON('servlet地址',function(Jsondata){//请求servlet解析为json数据格式 }) String sql="select * from table t where t.id %s ?"sql=String.format(sql,"like"); System.out.println(sql)//输出s ...
//No center region defined in BorderLayout var vpt = new Ext.Viewport({ layout:'border', items:[ {region:"west",xtype:"panel", // layout:'border',border:false,/ ...

List<T> 泛型集合

    博客分类:
  • C#
using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace DicrionaryTest { //泛型集合 class Class3 { static void Main(string[] args) { List<string> list = new List<string>();//泛型集合 ...

C# 泛型 简单应用

    博客分类:
  • C#
using System; using System.Collections.Generic; using System.Text; namespace DicrionaryTest { public class Stack<T>//定义一个泛型类 { private int count;//元素个数 private T[] items;//用T替换一个具体的数据类型 public Stack(int size) { items = new T[siz ...
using System; using System.Collections.Generic; using System.Text; //多重传送事件 namespace interfaceDemo { //多重传送事件是指一个事件同时有多个订阅者,即通过委托将多个方法添加到该事件中,当事件被引发时,同时 //触发这些委托的执行 class MutiplyEventTest { public delegate void MathOp(int i, int j);//定义委托 public event Math ...
Global site tag (gtag.js) - Google Analytics