自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 资源 (21)
  • 收藏
  • 关注

原创 内网穿透技术

http://prosaga.cn

2020-10-29 11:23:45 255

原创 BigIntegerMultiplyWXJ

package hwtest.total;import java.util.ArrayList;import java.util.List;public class BigIntegerMultiplyWXJ {public static List longToList(int d) {List list = new ArrayList();whil

2017-08-10 23:35:05 150

原创 BigIntegerMultiply

package hwtest.total;import java.math.BigInteger;     public class BigIntegerMultiply {           public static void main(String args[]){                           Integer base = new Integer

2017-08-10 23:34:02 458

原创 BigIntegerAdd2

package hwtest.total;import java.math.BigInteger;import java.util.ArrayList;import java.util.List;public class BigIntegerAdd2 {public String addTwoBigNumber(String s1, String s2) {

2017-08-10 23:33:16 143

原创 BigIntegerAdd

package hwtest.total;import java.math.BigInteger;public class BigIntegerAdd {public static void main(String[] args) {BigInteger b1=new BigInteger("981111111111");BigInteger b2=new

2017-08-10 23:32:22 520

原创 ArrayMaxTwoNum

package hwtest.total;public class ArrayMaxTwoNum {public static void main(String[] args) {int[] array = { 1, 2, 5, 9, 84, 3, 2 };System.out.println("数组" + array.toString() + "里面最大的2个数为:");

2017-08-10 23:31:12 132

原创 ArrayLowHightOut

package hwtest.total;public class ArrayLowHightOut {        public static void main(String[] args) {          int input[] = {3,6,1,9,7,8};          int output[] = new int[6];          Arra

2017-08-10 23:30:00 117

原创 ArrayKeep2N

package hwtest.total;import java.util.ArrayList;import java.util.Arrays;import java.util.List;public class ArrayKeep2N {      public static void main(String[] args) {          int[

2017-08-10 23:29:17 108

原创 ArrayAvg

/**  *   *  *  *程序实现目标:求一个整型数组中元素的平均值,并统计其中大于和小于此平均值的元素的个数。  *程序要求:  *  输入:整型数组中的元素个数及各个元素。  *  输出:整型数组中元素的平均值,大于和小于此平均值的元素的个数。  */  public class ArrayAvg {      public static void

2017-08-10 23:27:35 501

原创 Array2GetColMinValue

package hwtest.total;import java.util.Arrays;    /**  *  *  *比较二维数组列最小值,组成一个新数组返回。(实现核心算法,不需要使用IO)  *  输入:intArr = {{5,6,1,16},{7,3,9}}  *  输出:intArrs ={1,3}  */  public class Arra

2017-08-10 23:21:38 130

原创 Array2DRandomReverse

package hwtest.total;    import java.util.Random;   public class Array2DRandomReverse {      public static void main(String[] args) {          int[][] arr = {{4,3,32,5},{1,2,3,4},{9,6,5,4}

2017-08-10 23:19:35 129

机器学习与数据挖掘方法和应用

机器学习与数据挖掘方法和应用

2014-11-09

机器学习曾华军

机器学习曾华军

2014-11-09

hadoop-1.2.1eclipse插件

hadoop

2014-03-19

linux常用命令

linux常用命令

2013-11-19

数据泵实战

CREATE DIRECTORY DMPDIR AS 'E:\ETDATA\expdp'; CREATE DIRECTORY DMPDIR AS '/home/oracle/wxjexpdp'; CREATE DIRECTORY WXJ AS '/home/oracle/wxj'; CREATE DIRECTORY MYDIR AS '/home/oracle/wxj'; CREATE DIRECTORY impdpdir AS 'C:\impdpdir'; C:\impdpdir CREATE DIRECTORY expdpdir AS 'C:\expdpdir'; C:\expdpdir CREATE DIRECTORY expdpdir AS 'C:\expdpdir_orcl3'; CREATE DIRECTORY impdpdir AS 'C:\impdpdir_orcl3'; C:\expdpdir_orcl3 C:\impdpdir_orcl3 CREATE DIRECTORY expdpdir AS 'C:\expdpdir'; CREATE DIRECTORY impdpdirsde AS 'C:\impdpdir'; 查询dba_directories查看所有directory: select * from dba_directories;

2013-11-19

linux 64位性能监控nmon

linux 64位性能监控nmon

2013-03-20

解决spring自增型主键问题

解决sqlserver2008自增型主键问题

2012-09-01

读取XML源码

读取XML可以直接运行哦

2012-09-01

qgit软件包

qgit软件包

2012-09-01

rails 3 way

As I write this new introduction in the spring of 2010, the official release of Rails 3.0 is looming, and what a big change it represents. The “Merb-ification” of Rails is almost complete! The new Rails is quite different from its predecessors in that its underlying architecture is more modular and elegant while increasing sheer performance signifi-cantly. The changes to Active Record are dramatic, with Arel’s query method chaining replacing hashed find parameters that we were all used to. There is a lot to love about Rails 3, and I do think that eventually

2012-09-01

mysql高级货

mysql高级货

2012-09-01

centOS Rails3环境搭建

1 准备工作 install nodejs # yum install httpd \httpd-devel \openssl-devel \zlib-devel \mysql-server \mysql-devel \gcc \gcc-c++ \curl-devel\libyaml 2 Ruby 1.9.2, RubyGems # cd ~/source/ # wget ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p174.tar.gz -C ~/source/ # tar xvzf ~/source/ruby-1.8.7-p174.tar.gz -C ../build/ # cd ../build/ruby-1.8.7-p174 # ./configure && make && make install # ruby -v ruby 1.9.2 3 rails # gem install rails -v=2.3.11 4 passenger # gem install passenger passenger-install-apache2-module 安装完成后按照提示将下面的内容添加到etc/httpd/httpd.conf LoadModule pa

2012-09-01

windows下安装或升级rails

windows下安装或升级时gem经常会碰到 1 Please update your PATH to include build tools or download the DevKit 2 from 'http://rubyinstaller.org/downloads' and follow the instructions 3 at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit' 这是因为没有安装DevKit的缘故。

2012-09-01

js电子书+.chm

js电子书+.chm

2012-01-12

java web 标签大全.CHM

java web 标签大全.CHM

2012-01-12

Apache2.2中文手册

Apache HTTP Server Version 2.2 文档 为了帮助大伙儿升级,我们为现在的Apache用户提供了一份重要信息的文档说明。这些只是一些简要说明,你可以从新特性文档或src/CHANGES文件中得到更多信息。

2012-01-12

Rails 3 in Action.pdf

Rails 3 Rails框架首次提出是在2004年7月,它的研发者是26岁的丹麦人David Heinemeier Hansson。不同于已有复杂的Web 开发框架,Rails是一个更符合实际需要而且更高效的Web开发框架。Rails结合了PHP体系的优点(快速开发)和Java体系的优点(程序规整),因此,Rails在其提出后不长的时间里就受到了业内广泛的关注。

2012-01-12

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除