`
文章列表
我们经常需要通过js来提交表单或者超链接 1.js提交表单( .submit()方法提交表单 ) function doSearch(){ var action ="<%=path%>/User_queryAllUser"; document.all.form.action = action; document.all.form.submit(); } 2.js提交表单( .submit()方法提交表单 ) <script type="text/javascript"> function addSub ...
套打设计教程 jatoolsPrinter的套打功能是大家比较常用的一个功能。如何使用这个功能,大家经常会有些困惑,下面,我们深入介绍如何使用jatoolsPrinter来做套打,供大家参考。 做套打,简单一句话,就是打印的内容,比如,套打支票时的帐号,金额,要打印到正确的位置上,不能错位。 如何保证不错位?首先,你要做一个测试网页,网页中嵌入扫描得到的票据底图,将网页打印到实际票据中,通过css的width,height,padding-left,padding-top等属性,来确保打印出来的底图与实际票据大小一致,并保持重合(即上下左右四角重合)。 其次,在你的测试网页中,加入你要打印 ...
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <html> <head> <link rel="stylesheet" type="text/css" href="/css/style.css" /> <script language="javascript" src="/inc/pCalendar/fPopUpC ...
/** * @param args * @throws ParseException */ public static void main(String[] args) throws ParseException {     Test.test(); } public static void test() throws ParseException { // 获取当前时间 // 通过格式化输出日期 java.text.SimpleDateFormat format = new java.text.SimpleDateFormat( "y ...
第一种方法,先生成文件,再下载下来 在用poi在EXECL报表设计的时候,遇到单元格合并问题,用到一个重要的函数: CellRangeAddress(int, int, int, int) 参数:起始行号,终止行号, 起始列号,终止列号 网上老多地方说是(//参数1:行号 参数2:起始列号 参数3:行号 参数4:终止列号)误导,经过仔细测试,应该是(起始行号,终止行号, 起始列号,终止列号), package com.jwy.excel; import java.io.FileNotFoundException; import java.io.FileOutputStream; imp ...
package com.jwy.excel; import java.io.FileInputStream; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.poifs.filesystem.POIFSFileSys ...
1、必须在form表单中添加enctype="multipart/form-data"代码 2、必须使用post方式提交。 3、Action中还有两个属性:uploadFileName和uploadContentType,这两个属性分别用于封装上传文件的文件名、文件类型。这是Struts2设计的独到之处:
问题解决方案: 项目中的jar包冲突,可能存在两个或以上的poi-3.2-FINAL-20081019.jar类型的包 将相同或者冲突的包删除即可。
struts2中返回json对象,以注入字符串result为例 配置sturts2 文件代码: <result type="json"> <param name="includeProperties">result</param> </result> java 中代码: 方法一: Gson gson = new Gson(); this.result = gson.toJson(list); 方法二: List list = new ArrayList(); for (java.util.Ite ...
<html> <head>         <title>             复选框全选、全不选、反选、必选一个         </title>         <meta http-equiv="content-type" content="text/html;charset=GBK"/>         <script language="javascript">             //表单验证             function check ...
function display(id){    var traget=document.getElementById(id);    if(traget.style.display=="none"){            traget.style.display="";    }else{            traget.style.display="none";    } } 2. 要显示/隐藏的html元素加上 id 属性 <table>                 <tr id="men ...
import java.sql.*; public class ConnectToMySQL { public static Connection getConnection() throws SQLException,java.lang. ClassNotFoundException{        //设置url、jdbc驱动器、用户名、密码 String url = "jdbc:mysql://localhost:3306/studentinfo"; Class.forName("com.mysql.jdbc.Driver"); String use ...
<script type="text/javascript">         var citys=new Array(47);         citys[0]="北京市|海淀区";         citys[1]="北京市|朝阳区";         citys[2]="北京市|东城区";         citys[3]="北京市|西城区";         citys[4]="北京市|丰台区";         citys[5]="北京市|昌平区 ...
报错:OutOfMemoryError...... 文件位置”/root/Oracle/Middleware/user-project/domain/base_domain/bin/…”修改配置文件”setDomainEnv.sh” 修改PermGen space参数   if [ "${JAVA_VENDOR}" = "Sun" ] ; then             MEM_ARGS="${MEM_ARGS} ${MEM_DEV_ARGS} -XX:MaxPermSize=128m"             export M ...
访问目标地址,端口号为5500 http://192.168.1.251:5500/em 使用超级管理员用户登录 sys 密码 可自己设置
Global site tag (gtag.js) - Google Analytics