- 浏览: 60473 次
- 性别:
- 来自: 杭州
最新评论
文章列表
把一个文件复制到另外一个文件中
- 博客分类:
- java 代码
public static void main(String[] args) {
//需要复制的文件
File oldFile = new File("E:\\upload\\123.txt");
//新的文件路径
File newFile = new File("E:\\upload\\123.txt");
try {
FileInputStream fileStream = new FileInputStream(oldFile);
FileOutputStream fileOut = new FileOu ...
/**
* <p>Title: main
* <p>Description: 选择排序
* @param args
*/
public static void main(String[] args) {
int[] arry = { 6, 5, 3, 1, 9, 8, 7, 2, 4 };
for (int i = 0; i < arry.length - 1; i++){
int min = i;
for (int j = i+1; j < arry.length; j++){
if ...
/**
* 日期时间初始格式
* <p>Title: main
* <p>Description:
* @param args
*/
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
String timestart = dateFormat.format(date);
String timestop ...
/**
* <p>Title: main
* <p>Description:
* @param args
*/
public static void main(String[] args) {
System.out.println(Thread.currentThread().getContextClassLoader().getResource(""));
System.out.println(FilePath.class.getClassLoader().getResource("" ...
ClientAbortException: java.net.SocketException: Software caused connection abort: socket write error
at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:373)
at org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:437)
at org.apache.tomcat.util.buf.ByteChu ...
jsp页面获取当前用户,传给JS页面
<%
SimpleDateFormat sdFormat = new SimpleDateFormat("yyyy-MM-dd");
User user = (User) session.getAttribute("user");
%>
<script type="text/javascript">
var curEmplName = '<%=user.getEmplName()%>';
var curUserName = '<%=use ...
不导出表数据。只需在命令行里加一个参数 rows=n 即可。表示不导出表数据。
exp file=d:databak.dmp owner=(user)rows=n
导出数据
exp file=d:\dmp\qns.dmp full=y
导入数据
imp file=c:\qns2.dmp full=y
用cmd命令启动Oracle
监听启动: net start OracleOraDb11g_home1TNSListener
服务名启动: net start OracleServiceQNS
服务名启动: net start OracleServiceORAC
用cm ...
---修改表空间大小
alter database datafile 'D:\app\TableSpace\QNS_SPACE.dbf' resize 20480m;
---qns 临时表空间
create temporary tablespace qns2_temp
tempfile 'E:\app\TableSpace\qns2_temp_space.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
--qns数据表空间
create tablespace gqns_sp ...
上传的照片大小规格限制
- 博客分类:
- 编程语言
对上传照片大小规格限制,有两种方式。
第一种,是按照照片的宽度,高度。来进行限制
/**
* <p>Title: main
* <p>Description: 获取上传照片的长宽高
* @param args
*/
public static void main(String[] args) {
String imgPath = "F:\\01\\123.jpg";
/**
*
InputStream stream = myFile.getInputStrea ...
radio_fracas_IsForeignign.setVisible(false);
autoScroll : true,
collapsible : true,
titleCollapse : true,
panel有一个收缩属性配置。配置为true后就是一个向上的箭头,点击后收缩。
调用 panel.collapse(true),可以执行面板的收缩效果,panel.expand()为展开~
popable :true, 当前属性只能读取,不能操作
初始方法中加载,默认收缩
fieldset_approveone.collapse(false);//收缩一级分配
var desc = ...
如果hibernate中用到自增序列,且数据映射不是通过*.hbm.xml映射对象,而是通过bean对象注释来进行映射。必须添加
@SequenceGenerator(name = "GFRA_DELAYSRECORD_SEQ", sequenceName="GFRA_DELAYRECORD_SEQU")
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "GFRA_DELAYSRECORD_SEQ")否则,会出现新增ID无法添加异常。因为,bean对象I ...
create sequence eos_serviceitems_sequ
increment by 1 -- 每次增加的个数
start with 1 -- 从几开始计数
nomaxvalue -- 设置最大值到多少。这里是不设置
nocycle -- 一直累加,不循环
cache --指定在内存中可以预分配的序列号个数(默认值:20)
order;
-- 创建触发器
create trigger eos_ser ...
新增一条语句,其中一个字段是每个月自增。例如:SP+201311+xxx。后面三位是001,002,003等等。一直自增。到每个月重新开始,又会从001重新自增。
-- Create sequence
--自增序列
create sequence CHARSINCE_SEQU
minvalue 1
maxvalue 999
start with 1
increment by 1
cache 3;
--添加自增的字段
create or replace trigger GMKQ_SUPCLAIMIDENMAIN before
insert on GMKQ_SU ...
java计算日期加减
public static void main(String[] args) {
String lastConTime = "2011-11-23";
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
GregorianCalendar calendar = new GregorianCalendar();
try {
Date dateTime = dateFormat.parse(lastConTime);
...
截取前面为0的字符
select ltrim(substr('20001306600206999106413110101326',1,15),'0') from dual
查询oracle系统时间
select sysdate from dual
日期计算
to_date(‘xxxx-xx-xx', ‘yyyy-mm-dd’)
time 时间
date 日期
months_between 两个日期之间的月份数
add_months 添加一个月份数
next_day 返回下一天
last_day 返回最后一天