- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我读过其他几个有这个问题的人,我也尝试过这些方法。但是,我得到了无法确定的奇怪结果。
我正在使用 http://json2csharp.com/#构建我使用 convert 方法的类。
在我的代码中,我使用了以下库
using System;
using RestSharp;
using Newtonsoft.Json;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using System.Collections.Generic;
using ZXing;
using ZXing.Mobile;
我建立了一个方法来从我的 api 调用中获取 json 字符串并使用 Json.NET 将其转换为 c# 对象
public void convert(String response)
{
Console.WriteLine("Response: " + response);
Console.WriteLine("Check 1");
var list = JsonConvert.DeserializeObject<List<RootObject>>(response);
Console.WriteLine("Check 2");
Console.WriteLine(list);
Console.WriteLine("Check 3");
for (int i = 0; i < list.Count; i++) // Loop with for.
{
Console.WriteLine("Check 4");
Console.WriteLine("Pass: " + i);
Console.WriteLine(list[i]);
}
Console.WriteLine("Check 5");
}
public class Item
{
public string barcode { get; set; }
public string name { get; set; }
public string upvotes { get; set; }
public string downvotes { get; set; }
public string updated { get; set; }
}
public class RootObject
{
public List<Item> items { get; set; }
}
这是我正在调用的 API 中的示例数据集
{
"items":[
{
"barcode": "12345",
"name": "xxx",
"upvotes": "0",
"downvotes": "0",
"updated": "1465103701673"
},
{
"barcode": "1234",
"name": "xxx",
"upvotes": "0",
"downvotes": "0",
"updated": "1465103697375"
},
{
"barcode": "123",
"name": "xxx",
"upvotes": "0",
"downvotes": "0",
"updated": "1465103688554"
}
]}
错误日志中没有弹出错误。
如果我一上线就尝试添加调试
var list = JsonConvert.DeserializeObject<List<RootObject>>(response);
我收到消息“框架不在模块中”
代码只执行到检查 1,然后似乎停止了。下面是我来自 Visual Studio 的调试日志,记录了调用转换后发生的情况。
06-05 16:32:59.391 D/Mono ( 3672): Assembly Ref addref PennyGeneral[0x813fcad0] -> Newtonsoft.Json[0x82201ac8]: 2
06-05 16:32:59.391 D/Mono ( 3672): The request to load the retargetable assembly mscorlib v2.0.5.0 was remapped to mscorlib v2.0.5.0
06-05 16:32:59.391 D/Mono ( 3672): Assembly Ref addref Newtonsoft.Json[0x82201ac8] -> mscorlib[0x76d8a880]: 12
Response: {"items":[{"barcode": "12345","name": "xxx","upvotes": "0","downvotes": "0","updated": "1465103701673"},{"barcode": "1234","name": "xxx","upvotes": "0","downvotes": "0","updated": "1465103697375"},{"barcode": "123","name": "xxx","upvotes": "0","downvotes": "0","updated": "1465103688554"}]}
06-05 16:32:59.392 I/mono-stdout( 3672): Response: {"items":[{"barcode": "12345","name": "xxx","upvotes": "0","downvotes": "0","updated": "1465103701673"},{"barcode": "1234","name": "xxx","upvotes": "0","downvotes": "0","updated": "1465103697375"},{"barcode": "123","name": "xxx","upvotes": "0","downvotes": "0","updated": "1465103688554"}]}
Check 1
06-05 16:32:59.393 I/mono-stdout( 3672): Check 1
06-05 16:32:59.393 D/Mono ( 3672): Remapped public key token of retargetable assembly System.Core from 7cec85d7bea7798e to b77a5c561934e089
06-05 16:32:59.393 D/Mono ( 3672): The request to load the retargetable assembly System.Core v2.0.5.0 was remapped to System.Core v2.0.5.0
06-05 16:32:59.394 D/Mono ( 3672): Unloading image System.Core.dll [0x85f686d0].
06-05 16:32:59.394 D/Mono ( 3672): Image addref System.Core[0x85f660f0] -> System.Core.dll[0x82d98df8]: 4
06-05 16:32:59.395 D/Mono ( 3672): Config attempting to parse: 'System.Core.dll.config'.
06-05 16:32:59.395 D/Mono ( 3672): Config attempting to parse: '/Users/builder/data/lanes/3236/ee215fc9/source/monodroid/builds/install/mono-armv7/etc/mono/assemblies/System.Core/System.Core.config'.
06-05 16:32:59.395 D/Mono ( 3672): Assembly Ref addref Newtonsoft.Json[0x82201ac8] -> System.Core[0x82df1b18]: 4
06-05 16:32:59.427 D/Mono ( 3672): Remapped public key token of retargetable assembly System from 7cec85d7bea7798e to b77a5c561934e089
06-05 16:32:59.427 D/Mono ( 3672): The request to load the retargetable assembly System v2.0.5.0 was remapped to System v2.0.5.0
06-05 16:32:59.428 D/Mono ( 3672): Unloading image System.dll [0x85fb77d0].
06-05 16:32:59.428 D/Mono ( 3672): Image addref System[0x85fb94b0] -> System.dll[0x830252a0]: 4
06-05 16:32:59.428 D/Mono ( 3672): Config attempting to parse: 'System.dll.config'.
06-05 16:32:59.428 D/Mono ( 3672): Config attempting to parse: '/Users/builder/data/lanes/3236/ee215fc9/source/monodroid/builds/install/mono-armv7/etc/mono/assemblies/System/System.config'.
06-05 16:32:59.428 D/Mono ( 3672): Assembly Ref addref Newtonsoft.Json[0x82201ac8] -> System[0x8302f6e0]: 4
06-05 16:32:59.475 D/Mono ( 3672): Remapped public key token of retargetable assembly System.Runtime.Serialization from 7cec85d7bea7798e to b77a5c561934e089
06-05 16:32:59.475 D/Mono ( 3672): The request to load the retargetable assembly System.Runtime.Serialization v2.0.5.0 was remapped to System.Runtime.Serialization v2.0.5.0
06-05 16:32:59.476 D/Mono ( 3672): Image addref System.Runtime.Serialization[0x86002d60] -> System.Runtime.Serialization.dll[0x86002098]: 1
06-05 16:32:59.476 D/Mono ( 3672): Assembly System.Runtime.Serialization[0x86002d60] added to domain RootDomain, ref_count=1
06-05 16:32:59.476 D/Mono ( 3672): AOT module 'System.Runtime.Serialization.dll.so' not found: dlopen failed: library "/data/app-lib/PennyGeneral.PennyGeneral-2/libaot-System.Runtime.Serialization.dll.so" not found
06-05 16:32:59.477 D/Mono ( 3672): AOT module '/Users/builder/data/lanes/3236/ee215fc9/source/monodroid/builds/install/mono-armv7/lib/mono/aot-cache/arm/System.Runtime.Serialization.dll.so' not found: dlopen failed: library "/data/app-lib/PennyGeneral.PennyGeneral-2/libaot-System.Runtime.Serialization.dll.so" not found
06-05 16:32:59.477 D/Mono ( 3672): Unloading image data-0x8602f008 [0x86002f78].
06-05 16:32:59.478 D/Mono ( 3672): Config attempting to parse: 'System.Runtime.Serialization.dll.config'.
06-05 16:32:59.478 D/Mono ( 3672): Config attempting to parse: '/Users/builder/data/lanes/3236/ee215fc9/source/monodroid/builds/install/mono-armv7/etc/mono/assemblies/System.Runtime.Serialization/System.Runtime.Serialization.config'.
06-05 16:32:59.478 D/Mono ( 3672): Assembly Ref addref Newtonsoft.Json[0x82201ac8] -> System.Runtime.Serialization[0x86002d60]: 2
Loaded assembly: System.Runtime.Serialization.dll [External]
06-05 16:32:59.478 D/Mono ( 3672): Assembly Ref addref System.Runtime.Serialization[0x86002d60] -> mscorlib[0x76d8a880]: 13
06-05 16:32:59.500 D/Mono ( 3672): Assembly Ref addref System.Core[0x82df1b18] -> System[0x8302f6e0]: 5
Loaded assembly: Anonymously Hosted DynamicMethods Assembly [External]
Thread finished: <Thread Pool> #5
06-05 16:33:09.774 D/Mono ( 3672): [0x834fab30] worker finishing
06-05 16:33:09.781 D/dalvikvm( 3672): threadid=16: bye!
The thread 'Unknown' (0x5) has exited with code 0 (0x0).
Thread finished: <Thread Pool> #7
06-05 16:33:37.391 D/Mono ( 3672): [0x85274538] worker finishing
06-05 16:33:37.398 D/dalvikvm( 3672): threadid=20: bye!
The thread 'Unknown' (0x7) has exited with code 0 (0x0).
Thread finished: <Thread Pool> #8
06-05 16:33:53.046 D/Mono ( 3672): [0x851f1b60] worker finishing
06-05 16:33:53.052 D/dalvikvm( 3672): threadid=19: bye!
The thread 'Unknown' (0x8) has exited with code 0 (0x0).
Thread finished: <Thread Pool> #3
06-05 16:33:59.536 D/dalvikvm( 3672): threadid=15: bye!
The thread 'Unknown' (0x3) has exited with code 0 (0x0).
Thread started: <Thread Pool> #10
Thread started: <Thread Pool> #11
06-05 16:34:39.062 D/dalvikvm( 3672): threadid=15: interp stack at 0x83950000
06-05 16:34:39.064 D/dalvikvm( 3672): threadid=16: interp stack at 0x83970000
06-05 16:34:39.065 D/Mono ( 3672): [0x834fa728] worker starting
Thread finished: <Thread Pool> #11
06-05 16:34:59.711 D/Mono ( 3672): [0x834fa728] worker finishing
06-05 16:34:59.717 D/dalvikvm( 3672): threadid=16: bye!
The thread 'Unknown' (0xb) has exited with code 0 (0x0).
最佳答案
您的根对象存储项目的集合。将其更改为...
var root = JsonConvert.DeserializeObject<RootObject>(response);
var list = root.items;
关于c# - 在 Xamarin 中将 json 字符串转换为 .NET 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37646596/
我已经从github https://github.com/xamarin/xamarin-forms-samples下载了Xamarin.Form示例项目 打开任何示例项目后,它不允许我在iOS S
我收到此错误: "MyApp\App.cs(7,7): Error CS0246: The type or namespace name 'Xamarin' could not be found (a
我想知道 Xamarin 是否带有 Mono 运行时及其所有应用程序包。在这种情况下,如果两个基于 Xamarin 的应用程序安装在一个设备上,该设备将拥有两个 Mono 运行时权利。这是 Xamar
如何将库导入 Xamarin? 例如,我将如何导入 json.net为我的项目使用 xamarin? 谢谢 最佳答案 Json.NET可免费获得精美包装 Xamarin-compatible Comp
我不知道如何在输入框中置顶占位符文本。 我有一个很大的输入框,想把占位符文本放在顶部。 最佳答案 您需要为每个平台创建一个自定义渲染器以对齐占位符,如下所示: public class Placeh
我很难找到有关Xamarin.Forms的后台任务支持的文档。 Xamarin.Forms是否提供对定期后台任务的支持? 我需要为Windows Phone 10和Android都实现此功能。 最佳答
Xamarin.iOS中是否提供iOS Picker?我进行了详尽的搜索,但是没有示例,也没有信息可查。但是,它在Xamarin.Form中可用。 最佳答案 UIPickerView的真实示例示例:(
有谁知道是否可以使用 Xamarin.Forms 创建CardView样式(可滚动)列表?我们需要它在iOS和Android上将呈现为相同的。还需要调整阴影等属性(略微提高每张卡) 最佳答案 这是一个
所以,我对 Xamarin 有点陌生,我试图弄清楚如何显示一个包含用户文本输入字段的弹出窗口。 DisplayAlert 不这样做,因为它没有文本输入字段。我应该使用什么? 最佳答案 您可以使用 Di
我有一个运行良好的表单应用程序,但我注意到当页面出现时,背景颜色在几分之一秒内设置不正确。 我有这个代码用于我的 OnAppearing protected override async vo
您好,我正在开发一个具有登录功能的应用程序,它可以选择让您保持登录状态,即使您关闭该应用程序也是如此。 问题是什么?这就是我在 App.cs 中所做的: var statusLog = Appli
由于BackgroundImage是一个字符串,您应该如何设置Page的背景图像?我将不胜感激任何建议。 到目前为止,我已经尝试过: MainPage = new ContentPage {
如何使用 Renderer 在 Xamarin Forms 中使用渐变效果创建此按钮? 最佳答案 在 xamarin 中,您不能将渐变颜色添加为内置功能。您必须创建不同的渲染功能。这个 link 将指
背景:我正在处理一个 C# 项目。过去,当我做 System.Console.WriteLine("Hello"); 我会看到一个弹出控制台打印“你好”。控制台今天消失了,我该怎么做才能让它再次出现?
我们每天都在使用 Xamarin 和 Xamarin Forms,并且经常遇到异常而没有任何关于如何调试的有用信息。 有时它是我们的目标,有时是 Xamarin 中的错误,尤其是 Xamarin Fo
我正在使用 xamarin studio(带有 nuget 包管理插件),并且在我的项目中有一些 nuget 包。 项目上下文菜单中有“管理”和“恢复 nuget 包”,但也有控制台吗? 最佳答案 X
我有一个 CustomCalendar 元素,它是通过扩展 ContentView 并在另一个 ContentPage 中使用此自定义 View 而创建的。我尝试使用非聚焦事件来检测外部点击。但是问题
因此,对于整个MVVM,我还是一个新手。我几乎了解它的基本知识。我有一个可以按原样工作的示例,但是我试图将其更改为MVVM样式。我只是尝试不同的例子,所以我可以学习。 (LoginPage.xaml)
我正在尝试使我的Xamarin项目在Prism和DryIoc中使用MVVM。 我主要想使用自动注册,如下所示: [AutoRegisterForNavigation] ... protected ov
我有一个问题,如何在 Forms Xamarin 中制作模态屏幕,如附加的图像。 我想知道你们是否可以向我发送一段代码或示例以了解如何做到这一点。 https://extravios.com.br/c
我是一名优秀的程序员,十分优秀!