- 浏览: 220746 次
- 性别:
- 来自: 上海
最新评论
-
baozhutang:
这个问题是你没有按照官方命令来执行官方文档:$ bin/flu ...
No appenders could be found for logger (org.apache.flume.node.Application). -
jiangli15:
这么好的文章竟然没有评论?果断支持!!
设计模式
文章列表
linux清空文件内容
- 博客分类:
- Linux
方法1
echo “” > file_name
方法2
cat /dev/null > file_name
shell调用shell
- 博客分类:
- Linux
父shell
#!/bin/bash
echo "start exec shell.sh"
exec ./shell.sh
echo "over"
子shell
#/bin/bash
echo hello
echo hello
echo hello
运行方式:
[root@zhfx gbase]# ./execshell.sh
结果:
start exec shell.sh
hello
hello
hello
java执行shell脚本,实现拷贝
- 博客分类:
- Java
java执行shell脚本代码:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import ch.ethz.ssh2.Connection;
import ch.ethz.ssh2.Session;
public class CopyDemo
{
public static void main(String[] args)
{
String hostname = "134.32.43.***";/ ...
网络通信编程1-基本连接
- 博客分类:
- Java
服务器端:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
public class Server {
public static void main(String[] args) {
ServerSocket ss = null;
Socket serverSo ...
http://www.blogjava.net/javagrass/archive/2011/07/05/353680.html
Mina: Mina(Multipurpose Infrastructure for Network Applications) 是 Apache 组织一个较新的项目,它为开发高性能和高可用性的网络应用程序提供了非常便利的框架。当前发行的 Mina 版本2.04支持基于 Java NIO 技术的 TCP/UDP 应用程序开发、串口通讯程序,Mina 所支持的功能也在进一步的扩展中。目前,正在使用 Mina的应用包括:Apache Directory Project ...
显示日期不时间的挃令: date显示日历的挃令: cal简单好用的计算器: bc
格式化日期
date +%Y/%m/%d
ubuntu打开shell窗口
- 博客分类:
- Linux
在ubuntu中打开shell窗口
方法1:
方法2
contrl alt +t
JAVA调用Shell脚本2
- 博客分类:
- Java
String[] shell = new String[] { "/bin/sh", "-c", "cd /root/gbase;./dispserver -p 6667 &" };
Process ps = Runtime.getRuntime().exec(shell);
ps.waitFor();
通道与缓冲
参考:
http://tutorials.jenkov.com/java-nio/overview.html
1
Regular Expression
Description
.
Matches any character
^regex
Finds regex that must match at the beginning of the line.
regex$
Finds regex that must match at the end of the line.
[abc]
Set definition, can match the letter a or b or c.
[abc][vz]
Set definition, can match a ...
http://cyxinda.blog.51cto.com/6345204/1226010
1,首先,Java中的getResourceAsStream有以下几种: 1. Class.getResourceAsStream(String path) : path 不以’/'开头时默认是从此类所在的包下取资源,以’/'开头则是从ClassPath根下获取。其只是通过path构造一个绝对路径,最终还是由 ClassLoader获取资源。 2. Class.getClassLoader.getResourceAsStream(String path) :默认则是从ClassPath根下获取 ...
http://www.programcreek.com/2011/05/visitor-design-pattern-example/
import java.util.ArrayList;
interface Visitor {
public void visit(City city);
public void visit(Museum museum);
public void visit(Park park);
}
class FirstTimeVisitor implements Visitor {
@Override
public voi ...
maven打包插件
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
< ...
JAVA调用Shell脚本
- 博客分类:
- Java
http://blog.csdn.net/zhaoxinfan/article/details/11891701
JAVA调用Shell脚本
在实际项目中,JAVA有时候需要调用C写出来的东西,除了JNI以外,我认为一种比较好的方法是JAVA调用Shell。先把C写出来的make成可执行文件,然后再写一个shell脚本执行该可执行文件,最后是JAVA调用该shell脚本。
JAVA调用很简单,例子如下:
首先是shell脚本
[plain] view plaincopypr