- 博客(225)
- 资源 (19)
- 收藏
- 关注
原创 Struts2需要注意事项集锦
这些问题是本人开发中遇到的,如果有不同意见的,欢迎指出,大家交流学习1.写struts2的事情时,在return中,切记SUCCESS等是在Action中定义的,它是一个常量,如果写成了"SUCCESS"这个字符串字面值。如果写成了字符串字面值,在需要在xxx.jsp or xxx.html注意,这是大小写敏感的哦。2.在web.xml中,最新版(截至现在是struts-2.2
2011-10-25 13:23:03 1380
原创 博客说明
经过一番努力,搭建好了自己的博客地址:程序猿笔记 ,因为CSDN没有自己想要的功能,所以只好自己做一个了,所以自己的博客也随之转换到自己博客了。
2014-03-25 11:49:30 988
转载 Linux MTR命令
mtr -h 提供帮助命令mtr -v 显示mtr的版本信息mtr -r 已报告模式显示[root@10.10.90.97 ~]# mtr -r 202.108.33.94FOCUS9097 Snt: 10 Loss% Last Avg Best Wrst StDev220.181.61.252
2013-03-19 10:45:12 5194 1
原创 rsync+inotify 配置实时同步服务器
1.安装inofity-tools工具及rsync在服务器上(注意是服务器,即被备份的系统上),安装rsync在客户端上(即备份系统上,存储服务器的备份文件)2.在客户端上配置:/etc/rsyncd.conf文件,内容如下:uid = nobodygid = nobodyuse chroot = nomax connections = 10strict modes = yesp
2013-03-08 11:10:33 1437
原创 架设rsync服务器
1.服务器端,设置(或添加)文件:/etc/rsyncd.conf,内容如下:uid = nobodygid = nobodyuse chroot = nomax connections = 10strict modes = yespid file = /var/run/rsyncd.pidlock file = /var/run/rsync.locklog fil
2013-03-08 09:36:18 1104
原创 源码安装Nginx
1.下载好源码:http://nginx.org/en/download.html2.安装相应的编译环境:gcc, openssl-devl, pcre-devel和zlib-devel3.配置:./configure --prefix=/opt/nginx1.2 --with-http_stub_status_module 3.make4.sudo make install
2013-03-07 16:31:53 1089
原创 ubuntu12.04下源码安装PostgreSQL9.2.3
1.下载源码包: http://ftp.postgresql.org/pub/source/v9.2.3/postgresql-9.2.3.tar.bz22.安装依赖:apt-get install build-essensial gcc make libreadline6 libreadline6-dev (提醒缺少什么就安装什么)3.开始编译: (1)解压源码包到 /home
2013-03-02 09:48:59 973
原创 Java注意点
1.通过子类引用父类的静态字段,不会导致子类初始化。2.通过数组定义来引用类,不会触发此类的初始化。3.常量在编译阶段会存入调用类的常量池中,本质上没有直接引用到定义常量的类,因此不会触发定义常量的类的初始化。
2013-02-25 22:11:38 731
转载 HTTP状态码大全
完整的 HTTP 1.1规范说明书来自于RFC 2616,你可以在http://www.talentdigger.cn/home/link.php?url=d3d3LnJmYy1lZGl0b3Iub3JnLw%3D%3D在线查阅。HTTP 1.1的状态码被标记为新特性,因为许多浏览器只支持 HTTP 1.0。你应只把状态码发送给支持 HTTP 1.1的客户端,支持协议版本可以通过调用reque
2013-02-21 21:16:36 844
原创 Linux下的Socket基础编程(2)
#include #include #include # include #include #include #include #include #include #define BIND_PORT 9999#define BUFFSZ 4096int main(int argc, char * argv[]){ //extern int socket (int __
2013-02-10 10:38:26 942
原创 Linux下消息队列小例子
发送方:#include #include #include #include #include #include #include struct msg{ long msg_types; char msg_buf[511];};int main(void){ int qid; int pid; int len; struct msg pmsg; pm
2013-02-10 09:02:26 901
原创 ubuntu下开始自动挂载硬盘分区
# /etc/fstab: static file system information.## Use 'blkid -o value -s UUID' to print the universally unique identifier# for a device; this may be used with UUID= as a more robust way to name# dev
2013-02-05 11:05:32 979
原创 C统计1-49的数字出现的次数
/* * main.c * * Created on: Jan 23, 2013 * Author: linux 杨志永 * QQ : 929168233 * Email : ljy520zhiyong@163.com * */#include #include #include #include //数组的长度(一共49个数字
2013-02-04 10:43:40 6612
原创 ubuntu10.04下驱动编程hello world
1.驱动源码:#include #include MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){ printk(KERN_ALERT "Hello, world\n"); return 0;}static void hello_exit(void){ pri
2013-02-01 10:20:09 936
原创 mavn与tomcat集成
yangzhiyong org.codehaus.cargo cargo-maven2-plugin 1.3.2 tomcat7x /opt/apache-tomcat-7.0.34 existing /opt/apache-tomcat-7.0.34
2013-01-29 08:51:37 943
转载 Java过滤HTML标签
public static String delHTMLTag( String htmlStr ) { String regEx_script = "]*?>[\\s\\S]*?"; // 定义script的正则表达式 String regEx_style = "]*?>[\\s\\S]*?"; // 定义style的正则表达式 String
2013-01-04 20:35:27 1141
原创 Chrome报JS警告
Resource interpreted as script but transferred with MIME type text/html.解决办法:打开注册表:将text/plain,改为:text/javascript就可以了。
2012-12-13 22:53:54 2980
原创 Java一条语句断定本机的大小端
System.out.println(ByteOrder.nativeOrder().toString());
2012-12-09 10:33:22 1053
原创 MyEclipse下安装ADT
1.将下载好的ADTx.x.zip文件。2.解压这个文件,然后进入这个目录,并创建一个名为“eclipse”的目录。3.将里面的features目录和plugins目录剪切到eclipse目录里。即如下:4.进入myeclipse的安装目录下的dropins目录下,建立一下名为ADT.link的文件。里面的内容为:#linux下:path=/path/to/ADT
2012-12-08 21:57:52 1024
原创 使用Java开发一个非常简单的Web Service例子
1.定义一个Web Service 的接口类package org.yang.ws;import javax.jws.WebMethod;import javax.jws.WebService;import javax.jws.soap.SOAPBinding;import javax.jws.soap.SOAPBinding.Style;@WebService@SOAPB
2012-12-05 16:52:32 1700 2
原创 使用Tomcat7自带的数据库连接池
1.在Tomcat的安装目录下的conf\Catalina\localhost 目录下建立一个与你打算给Web应用程序起的别名的文件:命名方式为:别名.xml我的如下:gentoo.xml。注意这个名字要与 path里的值一样。<Context path="/gentoo" docBase="D:\workplace\TomcatJDBC\WebRoot" debug="
2012-12-03 19:37:32 2470 1
转载 JavaBean开发规范
(1)JavaBean 类必须是一个公共类,并将其访问属性设置为 public ,如: public class user{......}(2)JavaBean 类必须有一个空的构造函数:类中必须有一个不带参数的公用构造器(3)一个javaBean类不应有公共实例变量,类变量都为private ,如: private int id;(4)属性应该通过一组存取方法(getXxx
2012-11-27 18:26:58 736
原创 我的Linux PS1 变量
\[\033[01;32m\][\u@\h\[\033[01;34m\] \t \w \[\033[01;32m\]]$ \[\033[00m\]截图:
2012-11-26 22:54:51 734
原创 Linux下的Socket基础编程(来自Unix网络编程)
1.服务器端:/* * server.c * * Created on: Nov 20, 2012 * Author: gentoo */#include #include #include #include #include #include #include #include #include #include #define SERVER_
2012-11-22 23:01:09 749
原创 Linux X86_64下的32位汇编环境
1.汇编: as -32 -o hello.o hello.s 2.链接: ld -dynamic-link /lib/ld-linux.so.2 -lc -melf_i386 hello.o -o hello
2012-11-22 15:55:02 1267
原创 Linux下C内联汇编小例子
/* ============================================================================ Name : GCC.c Author : Gentoo Version : Copyright : Your copyright notice Description : Hello Wor
2012-11-19 23:17:16 930
原创 HTML中预览图片的JQeury代码
$(function(){ $("input[type='file']").change(function(evt){ var files = evt.target.files; alert("preview!!"); for (var i = 0, f; f = files[i]; i++) { if
2012-11-19 11:32:14 1059
原创 VC中使用C内联汇编小例子
#include int main() { int x = 1; int y = 1; int z = 0; __asm { xor edx,edx ;edx=0 add edx,x ;edx +=x add edx,y ;edx +=y mov z,edx ;z=edx } printf("From ASM inline C: \n"); printf("
2012-11-19 10:10:12 1047
原创 Gentoo下Mentohust开机自启动脚本
#!/sbin/runscript# Copyright (c) by Gentoo Lover #description="Set the mentohust level for a cleaner boot"LOG_FILE="/tmp/mentohust.log";depend(){ need net; after *;}start()
2012-11-18 13:04:10 1700
原创 JavaWeb中的路径
String saveDirString = request.getSession().getServletContext().getRealPath("upload");//saveDirString 为 tomcat目录\webapps\web应用名\+upload
2012-10-25 20:15:57 785
原创 SpringMVC中使用AOP
1.定义一个AOP:package org.yang.aop;import java.io.IOException;import javax.servlet.http.HttpServletResponse;import org.aspectj.lang.annotation.AfterReturning;import org.aspectj.lang.annotation.As
2012-10-17 12:22:19 3464
原创 Intel汇编写的斐波那契数
includelib kernel32.lib includelib user32.lib includelib Irvine32.lib .386.model flat,stdcall.stack 4096ExitProcess PROTO, dwExitCode:DWORD DumpRegs PROTO.datafirst DWORD 1;初始化第一个数为1t
2012-09-27 00:02:55 1157
原创 HLA中的类
program classDemo;#include ("stdlib.hhf");typePeople: class var pName: string; procedure getName; @returns( "ebx" ); procedure setName(myName:stri
2012-09-21 20:28:27 842
原创 HLA中的函数及调用
program procedureDemo;#include ("stdlib.hhf")static inputString: string; procedure sayHelloWorld( hello:string ); begin sayHelloWorld; stdout.put("hello, ", hello,
2012-09-21 13:12:59 863
原创 HLA中的记录
program recordDemo;#include ("stdlib.hhf")type Student: record sname: string; sage: int32; endrecord;var Me: Student;begin recordDemo; str.alloc( @siz
2012-09-20 12:49:31 741
原创 HLA中的数组与地址
1. 在HLA中(不是官方说的,而是自己探讨的,不知道正不正确^_^),数组的地址是数据的第一个字节的地址。2。如果数组的单位是字节,则首地址也是第一个数据的地址。即首地址的内容与第一个数据的内容是相同的。4。否则数组的首地址不是第一个数据的首地址,但是有规律的:第一个数据的地址=数组的首地址+(@size(声明数组时的数据类型));下图:声明为byte(字节)的数组的内存地址图:
2012-09-20 09:46:55 670
原创 HLA判断字符串是否相等
program strDemo;#include ("stdlib.hhf");static string1: string; string2: string;begin strDemo; str.alloc( @size(char) * 16 ); mov(eax, string1); stdout.put("Enter Stri
2012-09-20 08:32:06 830
Postgresql 教程
2011-10-03
俄罗斯方块,包括文档与演示
2011-09-06
俄罗斯方块源码与文档的写作
2011-09-06
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人