- 浏览: 37755 次
- 性别:
- 来自: 深圳
最新评论
文章列表
<chart caption='各地市对比图' xAxisName='' yAxisName='' outCnvBaseFontColor='#000000' showValues='0' decimals='3' formatNumberScale='0' baseFontSize='13' bgAlpha='40' bgColor='#F3EED1' legendPadding='0' slantLabels='1' showLabels='1' chartLeftMargin='1' chartRightMargin='1' chartTopMargin='1' chartBotto ...
/**
*@Company:
*@Copyright:
*
*/
package com.lcudp.util;
import java.security.Key;
import java.security.Security;
import javax.crypto.Cipher;
/**
*@Title: DES可逆加密算法:
*@Description:
*@Author:zhoupk
*@Create:Jan 27, 2011 3:02:18 PM
*@Version:1.1 ...
1、首先cmd 下进入 tomcat的目录:E:\share\lcudp_alpha1.1\lcudpdm\bin
2、将tomcat中bin 目录下的service.bat 中的
rem Set default Service name
set SERVICE_NAME=lcudpdmV11
set PR_DISPLAYNAME=lcudpdmV11
红色自己要修改的名字。
3、运行命令:
service.bat install 就OK了。
Exception loading sessions from persistent storage
严重: Exception loading sessions from persistent storage
java.io.EOFException
at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2228)
at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2694 ...
package com.lcconsole.util;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class LoadProperties {
public static Properties load(String path){
Properties prop = new Properties();
InputStream is = LoadProperties.class.getClassLoader().getR ...
USE [ei]
GO
/****** Object: Trigger [dbo].[TRG_tbAccountKind_INSERT] Script Date: 03/12/2011 09:07:09 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: laozhou
-- Create date: 2010,7,16
-- Description: 新增触发器,新增的相关信息保存到message表里面去 ...
import java.net.InetAddress;
import java.net.NetworkInterface;
public class Ipconfig {
public static void main(String[] arguments) throws Exception {
InetAddress ia = InetAddress.getLocalHost();// 获取本地IP对象
System.out.println("MAC ......... " + getMACAddress(ia));
}
// 获取MAC地址的方法
p ...