File imgFile = new File("hdfs://master:9000/input/picture1.jpg");
InputStream is = null;
try {
is = new FileInputStream(imgFile);
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
把picture1.jpg上传到hdfs后运行,总是说找不到这个文件
把目录改成/input还是不行