符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
/**
* 判断什么操作系统
*/
public String osName = System.getProperty("os.name");
/**
* 根据命令执行,
* @param cmdstr
* @param isNeedReturn
* @return list
* @throws Exception
*/
public List execute(String cmdstr, boolean isNeedReturn) throws Exception {
//存储结果
List lineList = new ArrayList();
String[] cmdarray;
if (osName.startsWith("Windows")) {
cmdarray = new String[]{"cmd", "/c", cmdstr};
} else {
cmdarray = new String[]{"/bin/bash", "-c", cmdstr};
}
//执行命令
Process process = Runtime.getRuntime().exec(cmdarray);
if (isNeedReturn) {
//获取结果流
InputStream fis = process.getInputStream();
//读取结果流
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String line = null;
while ((line = br.readLine()) != null) {
if (line.trim().length() != 0) {
lineList.add(line);
}
}
return lineList;
}
return null;
}