- 浏览: 99974 次
最新评论
-
hylxinlang:
噢,又涨见识了
B/S实现IC卡读卡 -
yizhaorong:
hylxinlang 写道javascript串口通信appl ...
B/S实现IC卡读卡 -
yizhaorong:
hylxinlang 写道b/s放在服务端是不行的吧,应该使用 ...
B/S实现IC卡读卡 -
hylxinlang:
b/s放在服务端是不行的吧,应该使用javascript来读写 ...
B/S实现IC卡读卡 -
hylxinlang:
javascript串口通信
B/S实现IC卡读卡
文章列表
Linux禁用远程root登录
- 博客分类:
- linux
编辑sshd服务的配置文件
vi /etc/ssh/sshd_config
找到下面这行:把值改为yes(允许)或no(不允许)
PermitRootLogin yes
service sshd restart
Linux永久性修改IP地址
- 博客分类:
- linux
1.配置网卡IP地址
vi /etc/sysconfig/network-scripts/ifcfg-eth0 #第二块网卡:vi /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth0 #物理设备名IPADDR=192.168.1.10 #IP地址NETMASK=255.255.255.0 #掩码值NETWORK=192.168.1.0 #网络地址(可不要)BROADCAST= ...
if exists (select * from dbo.sysobjects where id = object_id(N'dbo.calculateWeek') and xtype in (N'FN', N'IF', N'TF'))
-- 删除函数
drop function dbo.calculateWeek
GO
create function dbo.calculateWeek(@start int,@end int,@dsz int,@total int) returns varchar(50)
AS
BEGIN
declare @week varchar(50); ...
<mirrors>
...
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<name>Nexus Mirror</name>
<url>http://<Your Nexus IP>/nexus/content/groups/public</url>
</mirror>
...
</mirrors>
...
<profiles& ...
打开putty所在的目录,通过以下命令上传文件:
pscp "F:\迅雷下载\nexus-2.6.4-02-bundle.tar.gz" username@192.168.11.128:/home/username/
tar zxvf nexus-2.6.4-02-bundle.tar.gz -C /usr/local
cd /usr/local
mv nexus-2.6.4-02-bundle nexus
vim /etc/profile.d/development.sh
NEXUS_HOME=/usr/local/nexus
PATH=$NEXUS_HO ...
Plugin org.apache.maven.plugins:maven-surefire-plugin:2.7.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-surefire-plugin:jar:2.7.1: Could not transfer artifact org.apache.maven.plugins:maven-surefire-plugin:pom:2.7.1 from/to ...
显示目录文件:ls
-a 显示所有文件,包括隐藏文件
-l 显示详细信息
-d 查看目录属性
切换目录:cd
cd / 切换到根目录
cd ..切换到上级目录
显示当前所在目录:pwd
创建目录:mkdir newdir
复制文件或目录:cp
cp f1 f2 dir将文件f1 ...
<build>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<stopKey>stop</stopKey> ...
创建普通java项目:
mvn archetype:create -DgroupId=maven.test -DartifactId=test
创建web项目:
mvn archetype:create -DgroupId=maven.test -DartifactId=testweb -DarchetypeArtifactId=maven-archetype-webapp (这种创建方式会少一个文件夹:/src/main/java)
以上用的archetype:create可替换为archetype:generate,经过测试,个人认为前者创建比后者简单,生成速度也略快一些。
将 ...
BULK INSERT yjspersonschema
FROM 'E:\z1.csv'
WITH(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
Window下,下载SVN服务器端软件Subversion,直接安装即可
svn有一个根目录用来存放所有项目,每个项目相当于一个工厂
启动:svnserve -d -r d:/svn/root 目录为根目录
对于window,svn不支持后台运行
sc create SVNServer binPath= "D:\svn\Subversion\bin\svnserve --service -r d:/svn/root"
CentOS安装
yum install subversion
yum install mod_dav_svn
1.创建项目工厂:s ...
进入putty目录
按住SHIFT然后右击,选择“在此处打开命令窗口”
上传文件:pscp "D:\abc.txt" username@192.168.1.107:/home/username/abc.txt
下载文件:pscp username@192.168.1.107:/home/username/abc.txt D:\abc.txt
java自定义分页标签
- 博客分类:
- java
package com.yzr.utils;
import java.io.IOException;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.SimpleTagSupport;
/**
* 分页标签
*
* @author 伊昭荣
* @Time 2013年6月2日 22:45:58
*/
public class PageTag extends SimpleTagSuppo ...
通过ftp将linux_11gR2_database_1of2和linux_11gR2_database_2of2上传到linux中
unzip linux_11gR2_database_1of2.zip
unzip linux_11gR2_database_2of2.zip
由于我的虚拟机空间不大,所以解压后删除两个压缩文件
rm -f *.zip
mkdir -p /u01/oracle
mv database /u01/database
检查必备包(版本无需要一致):
rpm -qa | grep 名字
binutils-2.17.50.0.6
compat- ...
从tomcat官网下载:apache-tomcat-7.0.42.tar.gz并通过ftp上传到linux中。
执行:tar zxvf /home/zhangsan/apache-tomcat-7.0.42.tar.gz /usr/local
重命名:mv /usr/local/apache-tomcat-7.0.42 /usr/local/tomcat
如果安装过JDK就可以直接启动了。
启动:/usr/local/tomcat/bin/startup.sh