- 浏览: 335160 次
- 性别:
- 来自: 上海
最新评论
-
masuweng:
写的太 ...
oracle Net Manager 服务命名无法配置(无法新建、添加服务名) . -
w414034207:
方法2直接这么写就可以了eval("var answ ...
JSON.stringify()中文乱码 -
monica617:
学习了
JSON.stringify()中文乱码 -
cfj0210:
不错,有参考价值,不过程序依赖jdk1.6 在jdk 1.5下 ...
java 获取MAC地址 -
宋建勇:
...
java 获取MAC地址
文章列表
<div id="topBar">aaaaaaaaaaaaaaa</div>
//JS代码
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" language="javascript">
$(window).scroll(function(){
$ ...
Integer sessionId=(Integer) this.getAttribute("userId");
Integer userId=userTb.getUserId();
//若要判断两者不等的话,此时不能用
if(sessionId != userId){}
//需要改成下面这样才能进行断判
int sessionId=(Integer) this.getAttribute("userId");
int userId=userTb.getUserId();
//在页面上先用个hidden标签,来保存要用到的SESSION中的值
<s:hidden id="userIdInSe" name="#session.userId" ></s:hidden>
//JS代码
var id=document.getElementById("userIdInSe").value;
if(id==''){
alert('您还没登陆,请先登陆再留言!!!');
window.lo ...
我的电脑桌面上面总有一些删不掉的图标 怎么删掉这些没用的图标
桌面空白处点右键->属性->桌面->自定义桌面->现在清理桌面
//当鼠标移上去的时候显示样式
<body>
<ul>
<li class="checked">首页</li>
<li>搜索</li>
<li>发现</li>
<li>博文</li>
<li>相册</li>
</ul>
</body>
//样式
<style type="text/css">
...
//最近在做一个公司博客,页面上用到了很多弹出层,于是大家就仿照着其他网站上的弹出层做了一个。
<script type="text/javascript" src="/blogsystem/web/common/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="/blogsystem/web/common/js/jquery-ui-1.7.2.custom.min.js">< ...
//<s:if>标签
<s:if test='%{userTb.userSex == "女"}'>//是否等于某个字符串
<s:if test="userTb.userBirthday == null">
<s:if test="userTb.userBirthday != null">
<s:property value="userTb.userName"/>
<s:text name="userTb.userSex& ...
Servlet容器在启动时会加载Web应用,并为每个Web应用创建唯一的ServletContext对象。可以把ServletContext看成是一个Web应用的服务器端组件的共享内存,在ServletContext中可以存放共享数据。我们还可以获得环境初始化参数。
ServletConfig是属于各个Servlet的配置对象,它在Servlet加载以后方可以使用,其作用为:获得初始化参数,获得ServletContext
//SQL中新建的数据库文件默认存放路径为:C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data
//创建数据库
use master
go
if exists (select * from sysdatabases where name='aaaaa' )
drop database aaaaa
create database aaaaa
on primary(name='aaaaa', fileName="f:\blog\aaaaa.mdf")
go
//创建表
if exists ...
最近在做一个BLOG项目,页面中用到<s:date/>标签,可是却怎么也显示不出来,后来上网上查资料才明白自己把字段定义成了VARCHAR2类型,而<s:date/>标签只对DATE字段起作用!!!!
private Date userBirthday;//用户生日
<s:date name="userTb.userBirthday" format="yyyy-MM-dd" />
<sd:datetimepicker name="userTb.userBirthday" di ...
//限制用户输入最大字数为100
function limit(){
var max=100;
var count=document.getElementById("textarea").value.length;
if(count>max){
document.getElementById("textarea").value= document.getElementById("textarea").value.substr(0,max-1);
}
else{
...
Exception in thread "main" org.hibernate.QueryException: could not resolve property: messageTime of: com.ntcsoft.domain.UserTb
/*
* 根据用户ID来查询其所有留言信息
*/
public List<LeaveMessage> findMessage(Integer userId){
List<LeaveMessage> messageList=getSession().createCriteria(Le ...
Date currentTime=new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateString = formatter.format(currentTime);
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
//员工类
public class Employee implements java.io.Serializable {
private Integer empno;
private Department department;
private String ename;
private String job;
private Date hiredate;
private Double sal;
...
Exception in thread "main" org.hibernate.PropertyValueException: not-null property references a null or transient value: com.ntcsoft.domain.UserTb.staticUserrights
//用户表
CREATE TABLE USER_TB(
USER_ID NUMBER(8) PRIMARY KEY NOT NULL,//主键 非空 自动增长
USER_NAME VARCHAR2 ...