- 浏览: 778980 次
- 性别:
- 来自: 北京
最新评论
-
promiseloney:
这个女程序员厉害了。。。
JVM调优:GC 参数 -
zxjlwt:
可以通过WebService上传一个文件吗?素人派http:/ ...
webservice传送XML大小估算 -
liaoshaoyang:
写的不错嘛 可以做参考
权限管理设计一 -
aaaaaaaaabaas:
谢谢,对我有帮助
Apache Commons Configuration使用入门 -
Jack_Wilshere:
com.smartdot.pdm.business.corp. ...
java导出txt
文章列表
<html>
<head>
<title>testCSS</title>
<style type="text/css">
h2{
color:red;
}
h2{
color:green;
}
h3{
color:red;
}
h5{
color:green;
...
<html>
<head>
<title>testCSS</title>
<style type="text/css">
/*1.1定义多个HTML标签的CSS,即h1和h2,h3使用同一个CSS*/
h1,h2,h3 {
color:red;
}
/*1.2派生选择器:依据元素的上下文来定义CSS,即只有li下的strong 元素才会使用此CSS*/
li strong {
font ...
一道SQL语句面试题,关于group by
表内容:
2005-05-09 胜
2005-05-09 胜
2005-05-09 负
2005-05-09 负
2005-05-10 胜
2005-05-10 负
2005-05-10 负
如果要生成下列结果, 该如何写sql语句?
胜 负
2005-05-09 2 2
2005-05-10 1 2
------------------------------------------
create table #tmp(rq varchar(10),shengfu nchar(1))
insert i ...
1Get the average salary of each store 2Get the average salary of each city 3find cities in which there exists salary less than 1000 4Get the average salary of cities there exists salary less than 1000(can create temporary tables) 5Get the employees who are paid the max salary for each city.( can c ...
// 1. 工厂方法:能创建并返回特定类型对象的工厂函数(factory function).function createCar(sColor){var car = new Object(); // 或者 var car = new Object ;// 对象属性car.color = sColor ; // 对象方法car.showColor = function (){ alert(123);} ; // 记住,这里一定要 ...
<html>
<head>
<script>
/*
5.动态原型法
*/
function DCar(name,price){
this.name=name;
this.price=price;
if(DCar.initial='undefined'){
DCar.prototype.displayC=function(){alert(this.name+"----"+this.price)};
}
DCar.initial=true;
}
va ...
navigator对象介绍
- 博客分类:
- javascript
<html>
<head>
<title>
测试navigator对象
</title>
<body>
<script>
document.write("navigator.appName="+navigator.appName);
document.write("<br>");
document.write("parseFloat(navigator.appVersion)="+parseFloat(navigator. ...
<html>
<head>
<script>
function printView(){
alert("打印预览");
WebBrowser.ExecWB(7,1);
}
</script>
<title>
测试window.close
</title>
<OBJECT id="WebBrowser" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" height=" ...
Python-读取文件:API介绍
- 博客分类:
- Python
Python读写文件在计算机语言中被广泛的应用,如果你想了解其应用的程序,以下的文章会给你详细的介绍相关内容,会你在以后的学习的过程中有所帮助,下面我们就详细介绍其应用程序。
一、打开文件
Python读写文件在计算 ...
转载自:http://blog.csdn.net/forandever/article/details/5711319
功能:获取指定目录下面符合一定规则的文件名称和文件修改时间,并保存到指定的文件中
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Created on 2010-7-2
@author: forever
'''
import glob, os, datetime
#Windows
filesRead = r"C:/forever/logxyz-*.gif"
fileW ...
转载自:http://blog.csdn.net/bluishglc/article/details/6435087
关于FrontEnt:
在CXF的架构中,有一个FrontEnd概念(组件),实际上这是CXF提供或支持的WebService的编程模型,目前有四种: Annotations:基于CXF自己提供的注解实现WS. Dynamic Clients: 一套可以动态创建client的API,不需要生成client端的stub. JAX-WS:推荐的标准编程模型。 Simple:这是一种不使用任何注解,完全依赖反射实现WS的编程模型。(注:sim ...
webservice传送XML大小估算
- 博客分类:
- java基础
2013-06-06
某天,要做几个WebService,供第三方调用,一些是查询会返回多条数据,建议用分页,请求的时候带了条数,返回去的时候也带了条数,第三方不同意,让做最大条数限制,所以需要估算返回的最大条数。
1.读入XML计算一条数据所事的字节数据
public static void main(String args[]) {
String FileName = "d:/aa.xml";
File myFile = new File(FileName);
StringBuffer result = new StringBuffer();
...
java-HashSet源码学习
- 博客分类:
- java基础
HashSet: 不支持多线程
不允许重复【重复会覆盖之前的值】
允许为null
初始化:底层使用HashMap来管理
private transient HashMap<E,Object> map;
public HashSet(Collection<? extends E> c) {
map = new HashMap<E,Object>(Math.max((int) (c.size()/.75f) + 1, 16));
addAll(c);
...
jvm调优:使用jconsole监控Jboss
- 博客分类:
- 调优
使用jconsole监管Jboss,windows平台, 本地监控,需要在$jbosshome/bin/run.bat中增加下面的配置:
set JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.port=9999