`
文章列表
问题一 Tag: NSUserDefaults NSDictionary NSMutableDictionary You should know: You can only store things like NSArray,NSDictionary, NSString, NSData, NSNumber, and NSDate in `NSUserDefaults. 我将一个用户的信息以NSDictionary形式放在NSUserDefaults。当需要对用户信息进行更新时,首先将NSDictionary转换成NSMutableDictionary,因为NSDictionary是不能更改的 ...
Git 自学 git入门 http://www.tutorialspoint.com/git/index.htm http://www.worldhello.net/gotgithub/index.html git branch http://wenku.baidu.com/view/d183bd2e3169a4517723a3e7.html 更新源码 [1] git add filename   添加到索引区      git add -u            add all modification file to commit index [2] git commit filen ...

Oracle 自学

自己看的 ubuntu12.04 server version oracle11g sqldeveloper 一些基础概念 tablespace 表空间 = 若干段组成 segment 段 = 若干区段组成 extent 区段 = 若干相邻的数据块 block 数据块 如何了解table,index,table partition大小 结合数据库的常用表,了解数据库的一些信息 -- check all user; select * from all_users; -- current oracle database name select ora_database_name fro ...
Linux Version:Ubuntu12.04 X86_64 Server Version Eclipse Juno Hadoop1.0.4 namenode机子信息 机器名ubuntu ip地址192.168.1.111 附件 下载地址 hadoop-eclipse-plugin-1.0.4.jar  与JDK7兼容 用eclipse连接集群查看文件信息提示9000端口拒绝连接的错误 Cannot connect to the Map/Reduce location: hadoop1.0.3 Call to ubuntu/192.168.1.111:9000 failed on ...
本文主要讲述命令行@@ Linux Version:Ubuntu12.04 X86_64 Server Version 本文作废,不推荐下面描述方法,1.版本老,Ubuntu12.10支持tex live2012,ubuntu12.04还是tex live 2009 2.没有tlmgr,管理latex package工具,手动下载麻烦,推荐到latex官网下载,安装文档很详细 1. sudo apt-get install texlive-full 另外可以参考,命令行安装,有GUI。但是我显示中文没有成功: http://blog.eviac.com/2012/08/installing ...
参考 http://www.cnblogs.com/welbeckxu/archive/2011/12/30/2306887.html 提示: 需要参考链接才能成功部署,下面是个人安装记录的一些东东,希望对你有用~~~ 集群电脑ip设置 ubuntuMaster0 address 192.168.1.110 netmask 255.255.255.0 gateway 192.168.1.1 ubuntuSlave0 address 192.168.1.120 netmask 255.255.255.0 gateway 192.168.1.1 ubuntuSlave1 address 19 ...
RedHat5 安装 Mediacore 0.9.4 官方安装文档: http://mediacorecommunity.org/docs/install/index.html#step-1-setup-a-python- virtual-environment Apache2安装: sudo yum install httpd httpd-devel apache配置文件:/etc/httpd/conf/httpd.conf Apache模块路径:/usr/sbin/apachectl web目录:/var/www/html 如果采用源代码安装,一般默认安装在/usr/lo ...
问题描述: java web工程中的普通java类需要读取配置文件,例如读取classes下面a.txt文件 String path = BusThreadFilter.class.getClassLoader().getResource("").toURI().getPath(); path = /C:/Program Files/Apache/Tomcat 6.0/webapps/fee/WEB-INF/classes/ 开始一看觉得不对,手动改成 C:\Program Files\Apache\Tomcat 6.0\webapps\fee\WEB-INF\classes ...
java.util.Date,+java.util.Calendar,+java.sql.Date,+java.sql.Time,+java.sql.Time 在java有关的项目开发工作中,我们常常要java.util.Date,java.util.Calendar,java.sql.Date, java.sql.Time,java.sql.Timestamp等几个类进行日期的处理和分析,那么这几个函数之间有什么样的联系,它们又有什么区别呢? 首先来说说它们之间的关系,java.util.Date这个类是java.sql.Date,java.sql.Time,java.slq.Timesta ...
1:N,N:1和N:M 1:N means one to many, Like an author has many books N:1 means many to one, Like there are many line items on a single purchase order N:M means many to many, Like a magazine company sells many different magazine title to many customers 1:N 1:N数据库中有两种建表方式: 1) create table tb_author { ...

MySQL相关的了解

基本命令 1.查看表结构 describe table_name show create table table_name 2.时间相关 参考url1:http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html          http://www.blogjava.net/Alpha/archive/2006/04/07/39844.html 创建属性 create_time timestamp not null default current_timestamp 返回long类型时间 select unix_t ...

MySQL 游标 循环

MySQL游标的使用 A simple cursor of mysql step1: 新建表tb_test; create table tb_test( id int ); insert into tb_test values ('1'); insert into tb_test values ('2'); insert into tb_test values ('3'); step2: 声明存储过程sp_test; delimiter $$ create procedure sp_test() BEGIN dec ...
A simple event of mysql Step1: 新建表tb_test; create table tb_test( id int primary key auto_increment ); Step2: 新建事件ev_test; create event ev_test on schedule every 5 second do insert into tb_test values (null); Step3: select * from ev_test; Em ...
这两天一直在捣腾服务器,CMD下运行netstat -ano可以发现有程序在扫描端口,怎么办呢? Google端口攻防,最简单的方法,启动TCP/IP过滤器,只打开特定端口,那么扫描其他端口 并不会建立TCP链接,也就不会加重服务端的负载。服务端使用superscan3扫描已经启动的服务端口,记录下来。 进入网络连接-》本地连接-》属性-》Internet协议 属性-》高级-》选项 -》TCP/IP筛选 属性 添加记录下来的端口。 OK,至此端口扫描问题解决了。 后续问题,端口关闭之后FileZilla(FTP)无法连接到服务器,mark下,之前我都是把服务端的防火墙关闭才能在passi ...

Java 时间格式化

    博客分类:
  • J2EE
偶尔需要格式化时间,所以这里把网上的经验都集中起来,方便自己查询。 Java中,我经常使用java.util.Date,但是好多方法都废弃,不过还是写了小程序 package com.time.example; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; /** * UTC是协调世界时(Universal Time Coordinated)英文缩写, * 是由国际无线电咨询委员会规定和推荐,并由国际时间局(BIH)负责保持的以秒为基础的时间标 ...
Global site tag (gtag.js) - Google Analytics