- 浏览: 64567 次
- 性别:
- 来自: 神农架
最新评论
文章列表
create tablespace LEAS datafile 'D:\app\LEAS.DBF' size 100M autoextend on next 10m maxsize unlimited;
--1、查看表空间的名称及大小
SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size
FROM dba_tablespaces t, dba_data_files d
WHERE t.tablespace_name = d.tablespace_name
GROUP BY t ...
--查询所有的空表
select table_name from user_tables where NUM_ROWS=0;
--生成执行语句
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 ;
--复制上面生成的语句,如下所示
alter table E2USER_STATE allocate extent;
alter table ENTERPRISE_E2USER allocate extent;
alter table ENTERPRIS ...
$('#file_upload').uploadify({
buttonImage: '${ctx }/commons/uploaddify/img/browse-btn.png',
swf :'${ctx }/commons/uploaddify/uploadify.swf',
uploader :'../servlet/defaultDispatcher;jsessionid=${pageContext.session.id}?__action=xxx',
fileTypeExts: '*.jpg;*.png;*.gif;*.bmp',
...
${7944.44 / 500000 * 10000 }&${7944.44 * 10000 / 500000 }
他两计算得出来的结果相差很大,原因是默认保留了两位小数造成的,留心了。
public static String join( Object[] o , String flag ){
StringBuffer str_buff = new StringBuffer();
for(int i=0 , len=o.length ; i<len ; i++){
str_buff.append( String.valueOf( o[i] ) );
if(i<len-1)str_buff.append( flag );
}
return str_buff.to ...
1、用eclipse新建web工程。
2、解压下载的CXF,把lib下面所有包copy到该工程lib下。
3、写接口
package server;
import javax.jws.WebParam;
import javax.jws.WebService;
@WebService
public interface iHelloWorld {
//加入WebParam注解,以保证xml文件中参数名字的正确性
String sayHi(@WebParam(name="text") String text);
...
-Xms512m -Xmx768m -XX:CompileThreshold=8000 -XX:PermSize=256m -XX:MaxPermSize=512m
转自:http://blog.csdn.net/kongxx/article/details/6860732
1. 首先是一个任务类,这个类没有实现任何接口,其中包含一个run方法用来运行这个task,代码如下:
package org.garbagecan.springstudy.schedule.quartz;
public class MyTask {
private String name;
public void run() {
System.out.println("Run task: " + name + "." ...
这个是在学习coder 宝宝css3视频教程里看到的,觉得不错,拿出来分享一下。
function setCss3 (obj,attrObj) {
for (var i in attrObj) {
var newi=i;
if(newi.indexOf("-")>0){
var num=newi.indexOf("-");
newi=newi.replace(newi.substr(num,2),newi.substr(num+1,1).toUpperCase());
}
obj.sty ...
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>js性能优化</title>
<script class="jquery library" src="/js/sandbox/jquery/jquery-1.8.2.min.js" type="text/javascript"></script>
</head>
& ...
转自:http://blog.csdn.net/getdate/article/details/8011700
Math.sin(x) x 的正玄值。返回值在 -1.0 到 1.0 之间;
Math.cos(x) x 的余弦值。返回的是 -1.0 到 1.0 之间的数;
这两个函数中的X 都是指的“弧度”而非“角度”,弧度的计算公式为: 2*PI/360*角度;
30° 角度 的弧度 = 2*PI/360*30
如何得到圆上每个点的坐标?
解决思路:根据三角形的正玄、余弦来得值;
假设一个圆的圆心坐标是(a,b),半径为r,
则圆上每个点的X坐标=a ...
java 实现Excel irr计算(改进版)
- 博客分类:
- java
import java.util.ArrayList;
import java.util.List;
public class IrrUtil {
/**迭代次数*/
public static int LOOPNUM=1000;
/**最小差异*/
public static final double MINDIF=0.00000001;
/**
* @desc 使用方法参考main方法
* @param cashFlow 资金流
* @return 收益率
* ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>bdMap.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" conte ...
include http://www.ibm.com/developerworks/cn/xml/x-javaxpathapi.html
import java.io.IOException;
import org.w3c.dom.*;
import org.xml.sax.SAXException;
import javax.xml.parsers.*;
import javax.xml.xpath.*;
public class Main
{
public static void main(String[] args)
throws Pa ...