如何在Xamarin Android应用中将日志输出到SD卡上的文件?

我有一个Xamarin Android应用程序,该应用程序在整个应用程序中都有Debug.WriteLine语句.这些语句出现在Xamarin控制台中,但我希望它们也可以附加到手机SD卡上的日志文件中.

我想我可以开发自己的解决方案,但是我想知道是否有内置的方法来做到这一点?

解决方法:

我不认为有内置的方法可以执行此操作,但是简单的代码可以为您完成此操作-

using System;
namespace Com.Osfg
{
    public class LogUtils
    {
        String logFilePath = null;

        public LogUtils()
        {
            String path = Android.OS.Environment.ExternalStorageDirectory.Path;
            logFilePath = System.IO.Path.Combine(path, "log.txt");
            if(!System.IO.File.Exists(logFilePath))
            {
                using (System.IO.StreamWriter writer = new System.IO.StreamWriter(logFilePath, true))
                {
                    writer.WriteLine("Starting logging at " + DateTime.Now.ToString());
                }
            }
        }

        public void Log(String message)
        {
            using (System.IO.StreamWriter writer = new System.IO.StreamWriter(logFilePath, true))
            {
                writer.WriteLine(DateTime.Now.ToString() + " : " + message);
            }
        }
    }
}
上一篇:C盘空间太大,分区助手减小分区大小教程


下一篇:eclipse项目中关于导入的项目里提示HttpServletRequest 不能引用的解决办法