java安全性编程实例电子版书附源码,是网络安全编程者不可多得的好书

源代码在线查看: runshowfile2.java

软件大小: 2426 K
上传用户: rentianchou
关键词: java 安全性 编程实例 电子版
下载地址: 免注册下载 普通下载 VIP

相关代码

				import java.io.*;
				public class RunShowFile2{
				     public static void main(String args[]) throws IOException{
				
				        System.setSecurityManager( new MySecurityManager( ));
				//        System.setSecurityManager( new java.lang.SecurityManager( ));       
				        ShowFile t=new ShowFile();
				        String s=t.go(args[0]);
				        if(args[0].endsWith(".txt")){
				                  String s2=t.go("c:\\autoexec.bat");
				        }
				        // 使用s2做各种事情
				        System.out.println(s);
				        System.out.println("Over");
				     }
				}
							

相关资源