首页 / 浏览问题 / 组件GIS / 问题详情
多任务切图时报scifile args is empty!
12EXP 2021年01月25日
执行多任务切图时报scifile args is empty!
//拆分任务
String[] str = new String[2];
str[0] = outPutPath + "/" + mapName + "/" + mapName + ".sci";
str[1] = outPutPath + "/" + mapName + "/CacheTask/doing";
TaskBuilder.main(str);
//执行切图
String[] str1 = new String[6];
str1[0] = path + "/" + file;
str1[1] = mapName;
str1[2] = str[1] + "/task";
str1[3] = outPutPath + "/" + mapName;
str1[4] = "4";
str1[5] = "50";
CacheBuilder.main(str1);

1个回答

你好。CacheBuilder传的String数组 还需要再加第七个参数,需要将 执行任务拆分之前的 sci的路径传进去。切图如果是原始或者紧凑,切图完成后,需要手动将缓存配置文件*.sci(参数7所指的文件)拷贝到缓存生成目录,就可以加载sci文件浏览缓存地图了
2,842EXP 2021年01月26日
...