wangkang
wangkang
在resources/static/放入静态的HTML,但是访问不到
确认下,最新版本(6.08)中,启动命令是否下一下: 【停止】 fdfs_storaged /etc/fdfs/tracker.conf stop fdfs_trackerd /etc/fdfs/storage.conf stop 【启动】 fdfs_storaged /etc/fdfs/tracker.conf start fdfs_trackerd /etc/fdfs/storage.conf start
没明白为什么不能用字符串执行呢? InputStream is = new FileInputStream("d:/test.ps1"); byte[] b = new byte[is.available()]; int i = 0; int index = 0; //循环读取每个数据 while((i=is.read())!=-1){//把读取的数据放到i中 b[index]=(byte) i; index++; } System.out.println(new String(b)); //把字节数组转成字符串 String cmd...