Java读写Excel的包是Apache POI(项目地址:http://poi.apache.org/),因此需要先获取POI的jar包,本实验使用的是POI 3.9稳定版。Apache POI 代码例子地址:http://poi.apache.org/spreadsheet/quick-guid ...
分类:
编程语言 时间:
2017-10-09 15:29:34
阅读次数:
332
using UnityEngine; using System.Collections; public class RayScript2 : MonoBehaviour { Vector3 _Taget; bool _isMove=true;//移动是否结束 public float speed=1... ...
分类:
移动开发 时间:
2017-10-09 15:23:39
阅读次数:
266
POJ3278:Catch That Cow kuangbin专题一:C题 题目链接:http://poj.org/problem?id=3278 Description Farmer John has been informed of the location of a fugitive cow ...
分类:
其他好文 时间:
2017-10-08 18:10:53
阅读次数:
205
一:StoryBoard 一般翻译成演示图版或者故事板,就像电影中的情节串联板,它是一个动画时间线的容器。 二:动画的分类 简单动画:以Animation结尾,例如DoubleAnimation 关键帧动画:以AnimationUsingKeyFrames结尾 简单动画主要是定义两个值,一个起点,一 ...
分类:
其他好文 时间:
2017-10-08 15:26:42
阅读次数:
108
参考资料:http://docs.oracle.com/database/122/SQLRF/Functions.htm#SQLRF006 Single-row functions return a single result row for every row of a queried table ...
分类:
数据库 时间:
2017-10-08 13:02:19
阅读次数:
214
@Configuration @PropertySource(value = "classpath:db.properties") public class DatabaseConfiguration implements EnvironmentAware { private RelaxedProp... ...
分类:
编程语言 时间:
2017-10-07 22:52:03
阅读次数:
406
第五章 异常 一、异常概述 概述:异常是在程序的运行过程中所发生的不正常的事件,他会中断正在运行的程序 二、异常处理 1.关键字:try catch finally throw throws 2.Try:把可能出现异常的代码放入try中 3.Catch:捕捉异常 4.Finally:无论是否有异常, ...
分类:
编程语言 时间:
2017-10-07 20:38:49
阅读次数:
130
#include "string.h"#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h" #define OK 1#define ERROR 0#define TRUE ...
分类:
编程语言 时间:
2017-10-07 19:48:56
阅读次数:
191
经过不断的努力,此代码还有一点瑕疵,基本功能已实现。#include #include #include int point() { int i,j,k,M,N; int max = 0, min = 0; int m[100], n[100]; double average, G,sum = 0.... ...
分类:
编程语言 时间:
2017-10-07 17:37:31
阅读次数:
134
本文主要描述通过java实现Excel导入导出 一、读写Excel三种常用方式 1.JXL——Java Excel开放源码项目:读取,创建,更新 2.POI——Apache POI ,提供API给Java程序对Microsoft Office格式文档案读和写的功能——使用其HSSF(Horrible ...
分类:
编程语言 时间:
2017-10-07 14:30:42
阅读次数:
509