- 浏览: 349491 次
- 性别:
- 来自: 苏州
最新评论
-
China_yl:
解决方法:首先问题原因是保存的tomcat里面的context ...
com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: 2 字节的 -
MikeJe:
确实是因为conf/server.xml中有中文导致的,哪怕注 ...
com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: 2 字节的 -
缘来是你:
同求C源码
JAVA和C通讯的AES加密和解密,供参考 -
ioandy:
同求C源码,757455159@qq.com
JAVA和C通讯的AES加密和解密,供参考 -
wmr0324:
请教下,你这公钥和私钥在数据库中创建的字段类型是什么类型呢?b ...
byte[]插入到MySQL数据库
文章列表
在tomcat中配置数据源的方法,及在程序中的调用方法。
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean" lazy-init="true">
<!-- tomcat中配置数据源 -->
<property name="jndiName" value="java:comp/env/jdbc/personnelpropertydb">< ...
各种SQL语句大综合(个人初学统计)
- 博客分类:
- SQL语句
mysql数据库SQL语言的运用(其他数据库不一定行)。
创建库 create database 库名;
删除库 drop database 库名;
使用库 use 库名;
===============================
===============================
查 select * from 表名
01、查询字段不为空(如果一个字段 ...
查询并更新表中一个字段的数据
- 博客分类:
- SQL语句
#查询并更新表中数据
update t_test set test = substr(test,3) where '0x'=substr(test,1,2) and id=1; #更新单条
update t_test set test = substr(test,3) where '0x'=substr(test,1,2) ; #更新多条
JAVA中以竖线截取字符串
- 博客分类:
- JAVA中String处理
public class StringTest {
/**以竖线截取时,要加两个斜杠
* @param args
*/
public static void main(String[] args) {
String str = "dev|iceno|1";
String[] ss = str.split("\\|");
for(String s : ss){
System.out.println(s);
}
}
}
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>点沿直线运动</title>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=1.2&services=true"></script> ...
去除字符串中所有空格
- 博客分类:
- FLEX
//去除空格字符串
//var p:RegExp = /\s/g;
//Alert.show("" + s.replace(p,""));
Flex项目大建SVN共同开发问题
- 博客分类:
- FLEX
说明:多人开发同一个flex项目的注意事项。
一个人建立的flex项目,其他人从SVN上把项目导出到本地的时候,需要修改部分参数。
在开发工具中,包资源管理器,下拉菜单中选择过滤器,把里面所有的够去掉,确认,此时在在flex项目中会多出来一些文件。
选中名字为.actionScriptProperties的文件,
<compiler additionalCompilerArguments="-compiler.debug -services "D:/Workspaces/MyEclipse8.5/CommunitySecurity/WebConten ...
两个常量交换值,不用到第三个变量
- 博客分类:
- 算法
int x = 3;
int y = 8;
/*方法一
x = x + y;
y = x - y;
x = x - y;*/
/*方法二
x ^= y;
y ^= x;
x ^= y;*/
System.out.println("x="+x+";y="+y);
#上一条
select * from t_user where f_id<4 and f_password='d2' order by f_id desc limit 0,1;
#下一条
select * from t_user where f_id>4 and f_password='d2' order by f_id asc limit 0,1;
1、FLEX集合PureMVC进行项目开发(FLEX+BlazeDS+PureMVC)
2、FLEX的持久层调用java层代码的时候,如果要调用一个对象里面的多个方法,做法如下
package com.wynlink.model
{
import mx.collections.ArrayCollection;
import mx.controls.Alert;
import mx.rpc.events.ResultEvent;
import mx.rpc.remoting.Operation;
import mx.rpc.remoting.RemoteObje ...
全屏显示,第一种写法:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minH ...
public class TestString {
public static void main(String[] args) {
String s1 = "abcdefghiabcjklmnopqrabcstuvwxyzabc";
String s2 = "a";
int count = (s1.length() - s1.replace(s2, "").length())/s2.length();
System.out.println(count);
}
}
1、XML
<?xml version="1.0" encoding="UTF-8"?>
<persons>
<person id="23">
<name>李明</name>
<age>30</age>
</person>
<person id="20">
<name>李向梅</name>
<age>25</age> ...
1、XML文件
<?xml version="1.0" encoding="UTF-8"?>
<persons>
<person id="23">
<name>李明</name>
<age>30</age>
</person>
<person id="20">
<name>李向梅</name>
<age>25</age> ...
1、JAVABean
package com.wynlink.domain;
public class Person {
private Integer id;
private String name;
private Short age;
public Person() {
super();
}
public Person(String name, Short age) {
super();
this.name = name;
this.age = age;
}
public Person(Integer id, ...