我想在使用pigServer的java程序中使用相对路径。我想知道这段代码是否正确:
String filePathDirectory="/consultaBicing1";
Path path=new Path(filePathDirectory);
hdfs.delete(path);
pigServer.store("source",path.toString());
程序在指令中失败:
pigServer.store("source",path.toString());
如何在此代码中使用相对路径?