- 浏览: 5630 次
- 性别:
- 来自: 深圳
最新评论
-
argel_lj:
嘿嘿ie 学习了
数组和List之间相互转换的方法
文章列表
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://jav ...
一 配置JDK
1、下载jdk(这个不需要多说了,能看到这篇文章的人都会吧)
下载后,解压,假设为d:\JAVATOOLS\JDK6,要确保bin目录在这个目录里,下面的JAVA_HOME即为此目录d:\JAVATOOLS\JDK6.
2、配置系统变量
(1) 右键单击“我的电脑”,选择 ...
1.调用ArrayList的toArray方法。
String[] arr = (String[])list.toArray(new String[size]);
2.数组转换成为List
String[] arr = new String[] {"1", "2"};
List list = Arrays.asList(arr);
sb.append("select max(lu.logonTime) , lu.user.name,lu.user.fullName from LogonUser lu where 1=1 ");
Object[] logonUserList = query.list().toArray();
</td>
<td class="DataContent" nowrap>${logonUserList[1]}</td>
<td class="DataConte ...
第一种方式:QBC查询
String name = "", info = "";
if (sub != null && sub.getSubname() != null) {
name = sub.getSubname();
}
if (sub != null && sub.getSubinfo() != null) {
info = sub.getSubinfo();
}
Criteria cr = session.createCriteria(Subject.class);
cr ...
package com.icinfo.hxbusi.synch.client.task;
import java.text.ParsePosition;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
public class DateUtils {
// 静态常量
public static final ...