JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Invalid escape sequence at line

简介: JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Invalid escape sequence at line

问题场景:

当时在做数据上传的时候,遇到的。

最后发现问题的所在,在提交数据到API中时,我当时只上传了一条数据,用户的提交意见,而数据表中的其他数据,没有进行上传,比如用户ID,phone…

凡是数据列表中,存在的成员变量,都要给其赋值,才能成功上传数据,即使你用到的数据,只有其中的几条。

在实体类中,赋值ID,和当前时间,可以直接赋值

AlarmRecordID= UUID.randomUUID().toString();
        DiagnosticTime=DateUtil.getNowDateTime("yyyy-MM-dd HH:mm:ss");
        CreateDate=DateUtil.getNowDateTime("yyyy-MM-dd HH:mm:ss");
        ModifyDate=DateUtil.getNowDateTime("yyyy-MM-dd HH:mm:ss");

在上传时,赋值… 数据全部要赋值,不能为空

case R.id.btn_submit_opinion:
                    SoundAlarmRecord soundAlarmRecord=new SoundAlarmRecord();
                    soundAlarmRecord.Diagnostic=edit_diagnostic_opinion.getText().toString();
                    soundAlarmRecord.DiagnosticUser=this.phone;
                    soundAlarmRecord.SoundPointCode=this.SoundPointCode;
                    soundAlarmRecord.IsDiagnostic="1";
                    soundAlarmRecord.IsSendMsg="0";
                    soundAlarmRecord.IsSoundAlarm="0";
                    soundAlarmRecord.IsTempAlarm="0";
                    soundAlarmRecord.Creator=this.phone;
                    soundAlarmRecord.Modifier=this.phone;
                    if (TextUtils.isEmpty(soundAlarmRecord.Diagnostic)){
                        Toast.makeText(RecordplayActivity.this, "提交诊断意见不能为空!", Toast.LENGTH_SHORT).show();
                    }else {
                        SubmittextFile(soundAlarmRecord);
                        btn_submit_opinion.setEnabled(false);
                    }

在这里记录一下,有同样问题的可以参考借鉴…


目录
相关文章
App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW in
App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW in
121 0
(转) Graph-powered Machine Learning at Google
    Graph-powered Machine Learning at Google     Thursday, October 06, 2016 Posted by Sujith Ravi, Staff Research Scientist, Googl...
|
6月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2475 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
6月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
88 0
|
6月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
143 0
|
6月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
76 0
|
6月前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
262 0
|
6月前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
127 0
|
6月前
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
124 0

热门文章

最新文章