`
tingjia_2009
  • 浏览: 15015 次
  • 性别: Icon_minigender_2
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
@media print { input.printbtn { display: none; } } <input name="button" type="button" class="printbtn" onClick="javascript:printpage();" value="打 &nbsp;印"/> 打印时,可以隐藏打印按钮!!
-- Create sequence create sequence SEQU_TEST minvalue 1 maxvalue 999999999999999999999999999 start with 1 increment by 1 nocache; --cache 2 指高速缓存 ---获得sequence SELECT SEQU_TEST.NEXTVAL FROM DUAL
简单的log4j.properties配置,不详细解释了 使用的方式 Logger successLog = Logger.getLogger("switch.success"); Logger failedLog = Logger.getLogger("switch.failed"); 适应情况: 只用一个呢,就是简单的Log记录 两个同时用,可以将正确的信息记录在successLog中,异常的信息记录在failedLog中,方便错误的追踪 #-------------------------------------------------------- ...
import java.io.FileInputStream; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; public class ReadExcel { /** * * @param fileName 读取的Excel的名字 * @param sheetName  sheet名字 * @param width 读取的列个数 ...
import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class FileTool { public static List readFile2List(String filePath){ List<String> fileContentList = new Ar ...
public class Queue { private long[] queue; private int maxSize; private int front; private int rear; private int nItem; public Queue(int maxSize) { this.queue = new long[maxSize]; this.maxSize = maxSize; this.front = 0; this.rear = -1; nItem = 0; } public void insert(long item){ ...
public class ArrayStrack { private long[] strack; private int maxLength; private int topIndex; public ArrayStrack(int maxLength) { this.strack = new long[maxLength]; this.maxLength = maxLength; this.topIndex = -1; } public void push(long item){ this.strack[++topIndex] = item; } public ...
public class ObjectSort { Person[] persons = null; int max =0; int count = 0; public ObjectSort(int max) { this.persons = new Person[max]; this.max = max; } public void insertPerson(Person person){ if(count<max){ persons[count] = person; count++; } } public void ins ...
public class Sort { public static void main(String[] args){ int[] arr = {1,0,9,8,2,5,6,7,4,3}; print(arr); selectSort(arr); System.out.println(); print(arr); bubbleSort(arr); System.out.println(); print(arr); insertSort(arr); System.out.println(); print(arr); } private sta ...
import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.Writer; import java.net.HttpURLConnect ...
1. 基本语法 CSS的定义是由三个部分构成:选择符(selector),属性(properties)和属性的取值(value)。 基本格式如下: selector {property: value} (选择符 {属性:值}) 选择符是可以是多种形式,一般是你要定义样式的HTML标记,例 ...
JSP的运行时,先把JSP翻译成对应的Servlet,再把Servlet变成class文件。 jsp->__2.java->__2.class JSP出错分成两种,一种是编译错误,比如JSP的变量没有定义,因为还没有生成 对应的servlet就错了,因此可以直接在页面上找到出错的行 比较难办的是,抛出来的错误是servlet的错误,所说的行数完全和JSP无关,处理这种问题时,不容易定位错误的位置,不利于代码的调试。     在使用Tomcat的时候,生成的servlet可以在tomcat的work文件夹下 找到,但是使用weblogic的时候,生成的servlet只是生成一 ...
-vm D:\Tools\JDK\jdk1.6.0_05\bin\javaw.exe -vmargs -Xms256M -Xmx1024M -XX:PermSize=64M -XX:MaxPermSize=128M -vm后需要改变成自己的java虚拟机位置
//被操作模板 <table id="hiddenYSOtherFeeDiv"> <tr>       <td height="21" align="center" bgcolor="#FFFFFF" class="Text12Blue">       <span>0</span>             </td>       <td align="center" bgcol ...
EncodeFilter,实现类如下 import java.io.IOException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; public class EncodeFilter implements Fil ...
Global site tag (gtag.js) - Google Analytics