mobile CCTV,mobile surveillance,police body worn cameras

 forgetPW
 registerNow
search
12NextPage
backToList newPost
view: 2569|reply: 16
打印 prevThread nextThread

FTP 上传后 平台查询不到文件

[copyURL]

18

主题

81

帖子

258

积分

midMem

Rank: 3Rank: 3

积分
258
jumpTo
owner
poston 2019-5-6 16:38 | authorOnly 回帖奖励 |viewing |阅读模式
通过FTP把图片上传到服务器上,在服务器上可以看到文件,但是通过平台中  录像检索-->平台存储  找不到该图片。



reply

使用道具 report

18

主题

81

帖子

258

积分

midMem

Rank: 3Rank: 3

积分
258
17#
 Owner| poston 2019-5-7 17:14 | authorOnly
wanzongyong post on2019-5-7 17:06
private FileSync2(Context context) {
        this.context = context;
        CoreSDK.setFileTransf ...

是这里没初始化!谢谢,已经解决了
reply agree Against

使用道具 report

4

主题

70

帖子

242

积分

midMem

Rank: 3Rank: 3

积分
242
16#
poston 2019-5-7 17:06 | authorOnly
private FileSync2(Context context) {
        this.context = context;
        CoreSDK.setFileTransfer2CallBack(this); // 构造函数里有这句吗?
    }
reply agree Against

使用道具 report

18

主题

81

帖子

258

积分

midMem

Rank: 3Rank: 3

积分
258
15#
 Owner| poston 2019-5-7 16:56 | authorOnly
wanzongyong post on2019-5-7 16:45
根据远程路径在服务器端查找是否有你上传的文件或者在监视器上检索,看看文件是否已上传成功

在服务器上看到文件是上传成功,在监视器的录像检索 平台录像一栏能找到文件
reply agree Against

使用道具 report

4

主题

70

帖子

242

积分

midMem

Rank: 3Rank: 3

积分
242
14#
poston 2019-5-7 16:45 | authorOnly
根据远程路径在服务器端查找是否有你上传的文件或者在监视器上检索,看看文件是否已上传成功
reply agree Against

使用道具 report

18

主题

81

帖子

258

积分

midMem

Rank: 3Rank: 3

积分
258
13#
 Owner| poston 2019-5-7 16:41 | authorOnly
wanzongyong post on2019-5-7 16:38
FileSync2 类中的transferStatus(JNIMessage message)是最原始的传输进度回调,你们是从开始上传到上传完成 ...

都没有的
reply agree Against

使用道具 report

4

主题

70

帖子

242

积分

midMem

Rank: 3Rank: 3

积分
242
12#
poston 2019-5-7 16:38 | authorOnly
FileSync2 类中的transferStatus(JNIMessage message)是最原始的传输进度回调,你们是从开始上传到上传完成都没有任何回调信息吗
reply agree Against

使用道具 report

18

主题

81

帖子

258

积分

midMem

Rank: 3Rank: 3

积分
258
11#
 Owner| poston 2019-5-7 16:18 | authorOnly
wanzongyong post on2019-5-7 15:55
BVCU_File_TransferInfos[] infos = gson.fromJson(value, BVCU_File_TransferInfos[].class);

infos.ev ...

没有 BVCU_File_TransferInfos 的回调,所以没办法判断 是否上传成功
reply agree Against

使用道具 report

18

主题

81

帖子

258

积分

midMem

Rank: 3Rank: 3

积分
258
10#
 Owner| poston 2019-5-7 16:17 | authorOnly
  1.     public int sendFile(String path) {


  2.         String szClientID = ProcessControl.getInstance().getApp().getServerParam().szClientID;
  3.         if (!szClientID.contains("PU_")) {
  4.             szClientID = "PU_" + szClientID.split("_")[1];
  5.         }
  6.         SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd", Locale.getDefault());
  7.         Date curDate = new Date(System.currentTimeMillis());
  8.         String time =  formatter.format(curDate);
  9.         String nruPath = "/" + szClientID + "/Photo/" + time + "/" + Utils.getFileName(path);
  10.         BVCU_File_TransferParam transferParam = new BVCU_File_TransferParam();
  11.         transferParam.bUpload = FileSync2.UPLOAD;
  12.         transferParam.pRemoteFilePathName = nruPath;
  13.         transferParam.pLocalFilePathName = path;
  14.         return FileSync2.getInstance().startFileTransfer(transferParam);

  15.     }

  16.     public void setFileTransferListener(FileSync2.OnFileTransferListener fileTransferListener) {
  17.         FileSync2.getInstance().setOnFileTransferListener(fileTransferListener);
  18.     }
copycode
reply agree Against

使用道具 report

4

主题

70

帖子

242

积分

midMem

Rank: 3Rank: 3

积分
242
9#
poston 2019-5-7 16:00 | authorOnly
你们是用FTP上传的吗?麻烦贴一下你们调用的上传方法
reply agree Against

使用道具 report

QQ|wireless surveillance

GMT+8, 2024-12-25 09:13 , Processed in 0.060543 second(s), 20 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

QuickReply backToTop BackToList