java输出Map集合的问题
importjava.io.*;importjava.util.*;publicclassDutyUtil{publicstaticMap<String,String>g...
import java.io.*;
import java.util.*;
public class DutyUtil {
public static Map<String, String> getDutyMap() throws IOException {
Map<String, String> hashMap = new HashMap<String, String>();
Properties prop = new Properties();
InputStream is = new FileInputStream(new File("duty_code.properties"));
prop.load(is);
Set<Object> keySet = prop.keySet();
for(Iterator<Object> it = keySet.iterator();it.hasNext();){
String key = (String)it.next();
String value = prop.getProperty(key);
hashMap.put(key, value);
}
return hashMap;
}
public static void main(String[] args) throws Exception {
System.out.println(getDutyMap());
}
}
哪里错了?调试总是提示“URLClassLoader$1.run() line:202 [local variables unavailable]”。
这个文件就在project文件夹里面的啊,奇怪了。我另外写了一个读取这个properties文件的测试,可以的读取这个文件的。
代码如下:
import java.io.*;
import java.util.Properties;
public class readDutyCode {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
/*读取Properties文件*/
Properties prop = new Properties();
InputStream is = new FileInputStream("duty_code.properties");
if (is != null){
prop.load(is);
}
/*读取Prop中的KEY/value*/
System.out.println(prop.getProperty("0001"));
}
} 展开
import java.util.*;
public class DutyUtil {
public static Map<String, String> getDutyMap() throws IOException {
Map<String, String> hashMap = new HashMap<String, String>();
Properties prop = new Properties();
InputStream is = new FileInputStream(new File("duty_code.properties"));
prop.load(is);
Set<Object> keySet = prop.keySet();
for(Iterator<Object> it = keySet.iterator();it.hasNext();){
String key = (String)it.next();
String value = prop.getProperty(key);
hashMap.put(key, value);
}
return hashMap;
}
public static void main(String[] args) throws Exception {
System.out.println(getDutyMap());
}
}
哪里错了?调试总是提示“URLClassLoader$1.run() line:202 [local variables unavailable]”。
这个文件就在project文件夹里面的啊,奇怪了。我另外写了一个读取这个properties文件的测试,可以的读取这个文件的。
代码如下:
import java.io.*;
import java.util.Properties;
public class readDutyCode {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
/*读取Properties文件*/
Properties prop = new Properties();
InputStream is = new FileInputStream("duty_code.properties");
if (is != null){
prop.load(is);
}
/*读取Prop中的KEY/value*/
System.out.println(prop.getProperty("0001"));
}
} 展开
3个回答
展开全部
("duty_code.properties"));
这个地址错了
异常不详细,只能看到这些
这个地址错了
异常不详细,只能看到这些
追问
java.lang.NoClassDefFoundError: Demo
Caused by: java.lang.ClassNotFoundException: Demo
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码没问题。看下别的类能不能运行,不能的话查看下环境变量;如果不是用工具而是用doc命令运行的话,运行有主方法的class文件。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询