我正在使用Blue Prism调用Microsoft Computer Vision API来识别PDF中的文本。
获取JSON响应后,Blue Prism可以使用Blue Prism的JSON Utility或Microsoft Computer Vision技能提供的操作将其转换为集合(数据表)。
问题:由于数据类型错误,在某些情况下,Blue Prism无法将JSON文本解析为Collection。
有人可以通过一个代码将这种JSON结构类型转换为Blue Prism可以读取的数据表吗?
我为2个JSON附加了pastebin链接(正文限制为30000个字符,不能在此处复制它们)。
Blue Prism中的READABLE(包含特殊字符!“#$%&/()”'):
Blue Prism不可读:
Blue Prism出现以下错误:
使用“读取操作响应”操作:
内部:意外错误数组中的数据类型不匹配:元素“ 3”具有类型,而不是预期的类型“ System.Double”
使用“来自Blue Prism的JSON实用工具”:
内部:无法执行代码阶段,因为代码阶段抛出了异常:数组中的数据类型不匹配
我试图通过使用json2csharp.com提供的工具创建公共类来将嵌套的JSON解析为数据表,然后指向它们并写入数据表。我还尝试过不创建类,而是通过指向属性 recognitionResults 将JSON直接解析到数据表中。
没有课程:
DataSet ds = JObject.Parse(json_txt)[“ recognitionResults”]。ToObject();
使用课程:
DataTable dt =(DataTable)JsonConvert.DeserializeObject(json_txt,(typeof(DataTable)));
课程:
public class Word
{
public List<double> boundingBox { get; set; }
public string text { get; set; }
public string confidence { get; set; }
}
public class Line
{
public List<double> boundingBox { get; set; }
public string text { get; set; }
public List<Word> words { get; set; }
}
public class RecognitionResult
{
public int page { get; set; }
public double clockwiseOrientation { get; set; }
public double width { get; set; }
public double height { get; set; }
public string unit { get; set; }
public List<Line> lines { get; set; }
}
public class RootObject
{
public string status { get; set; }
public List<RecognitionResult> recognitionResults { get; set; }
}
这是嵌套集合在Blue Prism中的外观: Blue Prism Nested Response Collection
答案 0 :(得分:0)
如果您使用的是版本6或更高版本,则应查看Blue Prism DX,该社区的一个分支,用户可以在其中交换VBO和知识。这个问题已经解决:
此实用程序提供了将JSON解析为集合并将其转变为JSON的功能。
答案 1 :(得分:0)
通过@MikeRs的答案,可以使用Blue Prism DX轻松解决此问题,而可以使用Microsoft Computer Vision skill。
通过技能发送文件,并使用输出以Blue Prism格式的数据项检索分析。