分享

通过jsp页面上传文件至hdfs

leo_1989 发表于 2013-10-25 10:43:58 [显示全部楼层] 回帖奖励 阅读模式 关闭右栏 1 4424
我想实现通过jsp页面上传文件至hdfs。目前我的是:我是在一台window的机子(机A)上安装eclipse,并装了插件。我要测试该window本机上的文件上传至hdfs(在另一台安装hadoop的linux机B),部分代码如下:
[ol]
  • String localSrc = "c:\\hello.txt";  
  • String dst = "hdfs:///hello.txt";
  • in = new BufferedInputStream(new FileInputStream(localSrc));
  • out = fs.create(new Path(dst), new Progressable();
  • IOUtils.copyBytes(in, out, 4096, true)[/ol]复制代码
    运行run as hadoop,提示找不到c:\hello.txt路径。
    我的做法是否有吗?是不是localSrc必须是机B上的路径吗?eclipse是否要装在机B上吗?
    劳烦大家帮忙看看。谢谢!
  • 已有(1)人评论

    跳转到指定楼层
    JavaShoote 发表于 2013-10-25 10:43:58
    在localSrc 的路径上加个“file:///“试试
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    关闭

    推荐上一条 /2 下一条