1 - 在 Windows 7 64位上构建flex,当出现错误时,我可以同时获得错误代码和错误消息
setContentView(R.layout.layout_dynamic);
layoutTest=(LinearLayout)findViewById(R.id.layoutTest);
TextView textView = new TextView(getApplicationContext());
textView.setText("testDynamic textView");
layoutTest.addView(textView);
2 - 在 Windows 2008 R2 64位上构建flex,当出现错误时,我只能获取错误代码,但不是错误消息
2015/06/15 16:47:26:192 [ERROR] MyClass Error: Error #3013: File or directory is in use.
at flash.filesystem::FileStream/open()
at MyClass/openCsv()
...
感谢您的帮助:)
答案 0 :(得分:0)
此问题不是由于操作系统的原因 响应是:我们只能在调试模式下获取错误消息,但不能在生产模式下获取
此外,您可以查看以前的答案: Get Full Exception Error with Flex