adb log cat

来源:互联网 发布:种子蔓延算法 积水 编辑:程序博客网 时间:2024/05/17 07:19

欢迎使用Markdown编辑器写博客

  1. 解析 adb logcat 的帮助信息

在命令行中输入 adb logcat –help 命令, 就可以显示该命令的帮助信息;

[plain] view plaincopy
octopus@octopus:~$ adb logcat –help
Usage: logcat [options] [filterspecs]
options include:
-s Set default filter to silent.
Like specifying filterspec ‘*:s’
-f Log to file. Default to stdout
-r [] Rotate log every kbytes. (16 if unspecified). Requires -f
-n Sets max number of rotated logs to , default 4
-v Sets the log print format, where is one of:

              brief process tag thread raw time threadtime long  

-c clear (flush) the entire log and exit
-d dump the log and then exit (don’t block)
-t print only the most recent lines (implies -d)
-g get the size of the log’s ring buffer and exit
-b Request alternate ring buffer, ‘main’, ‘system’, ‘radio’
or ‘events’. Multiple -b parameters are allowed and the
results are interleaved. The default is -b main -b system.
-B output the log in binary
filterspecs are a series of
[:priority]

where is a log component tag (or * for all) and priority is:
V Verbose
D Debug
I Info
W Warn
E Error
F Fatal
S Silent (supress all output)

’ means ‘:d’ and by itself means :v

If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS.
If no filterspec is found, filter defaults to ‘*:I’

If not specified with -v, format is set from ANDROID_PRINTF_LOG
or defaults to “brief”

adb logcat 命令格式 : adb logcat [选项] [过滤项], 其中 选项 和 过滤项 在 中括号 [] 中, 说明这是可选的;

(1) 选项解析

选项解析 :

– “-s”选项 : 设置输出日志的标签, 只显示该标签的日志;

–”-f”选项 : 将日志输出到文件, 默认输出到标准输出流中, -f 参数执行不成功;

–”-r”选项 : 按照每千字节输出日志, 需要 -f 参数, 不过这个命令没有执行成功;

–”-n”选项 : 设置日志输出的最大数目, 需要 -r 参数, 这个执行 感觉 跟 adb logcat 效果一样;

–”-v”选项 : 设置日志的输出格式, 注意只能设置一项;

–”-c”选项 : 清空所有的日志缓存信息;

–”-d”选项 : 将缓存的日志输出到屏幕上, 并且不会阻塞;

–”-t”选项 : 输出最近的几行日志, 输出完退出, 不阻塞;

–”-g”选项 : 查看日志缓冲区信息;

–”-b”选项 : 加载一个日志缓冲区, 默认是 main, 下面详解;

–”-B”选项 : 以二进制形式输出日志;

.

输出指定标签内容 :

– “-s”选项 : 设置默认的过滤器, 如 我们想要输出 “System.out” 标签的信息, 就可以使用adb logcat -s System.out 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -s System.out
——— beginning of /dev/log/system
——— beginning of /dev/log/main
I/System.out(22930): GSM -91
I/System.out(22930): SignalStrength issssssssss : -91
I/System.out(22930): GSM -91
I/System.out(22930): SignalStrength issssssssss : -91
I/System.out(22930): Supervisor Thread
I/System.out(22930): Got run mode

输出日志信息到文件 :

– “-f”选项 : 该选向后面跟着输入日志的文件, 使用adb logcat -f /sdcard/log.txt 命令, 注意这个log文件是输出到手机上,需要指定合适的路径。

[plain] view plaincopy
octopus@octopus:~$ adb logcat -f /sdcard/log.txt

这个参数对对不能一直用电脑连着手机收集日志的场景非常有用,其实android shell下也有一个相同参数的logcat命令。使用如下命令可以执行后断开PC和手机持续收集LOG。

[plain] view plaincopy
shell@pcadbshellshell@android logcat -f /sdcard/log.txt & #这里的&符号表示后台执行,别少了。
shell@android$ exit

注:

(1)以上shell@pcpcshellshell@android 表示在手机shell中执行后边的命令l

(2)一定注意合适的时候需要停止掉以上命令,否则再次使用相同命令的时候,就会有两个logcat写同一个文件了

      停止方法:  adb shell kill -9 <logcat_pid>                其中logcat_pid 通过 如下命令获取       adb shell ps | grep logcat          # linux 平台       adb shell ps | findstr "logcat"    #Windows平台

– “>”输出 : “>” 后面跟着要输出的日志文件, 可以将 logcat 日志输出到文件中, 使用adb logcat > log 命令, 使用more log 命令查看日志信息;

[plain] view plaincopy
octopus@octopus:~adblogcat>logCoctopus@octopus:  more log
——— beginning of /dev/log/system
V/ActivityManager( 500): We have pending thumbnails: null
V/ActivityManager( 500): getTasks: max=1, flags=0, receiver=null
V/ActivityManager( 500): com.android.settings/.Settings: task=TaskRecord{42392278 #448 A com.android.settings U 0}
V/ActivityManager( 500): We have pending thumbnails: null

– ” -d -f ” 组合命令:可以将日志保存到手机上的指定位置,对不能一直用电脑连着手机收集日志的场景非常有用。
[plain] view plaincopy
adb logcat -d -v /sdcard/mylog.txt

指定 logcat 的日志输出格式 :

– “-v”选项 : 使用adb logcat -v time 命令, 可以啥看日志的输出时间;

          使用adb logcat -v threadtime 命令, 可以啥看日志的输出时间和线程信息;

– “brief”格式 : 这是默认的日志格式” 优先级 / 标签 (进程ID) : 日志信息 “, 使用adb logcat -v prief 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -v brief
——— beginning of /dev/log/system
D/PowerManagerService( 500): handleSandman: canDream=true, mWakefulness=Awake
D/PowerManagerService( 500): releaseWakeLockInternal: lock=1101267696, flags=0x0
– “process”格式 : ” 优先级 (进程ID) : 日志信息 “, 使用adb logcat -v process 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -v process
——— beginning of /dev/log/system
D( 500) MobileDataStateReceiver received: ACTION_ANY_DATA_CONNECTION_STATE_CHANGED_MOBILE [wap] (MobileDataStateTracker)
V( 500) Broadcast: Intent { act=android.intent.action.ANY_DATA_STATE_MOBILE flg=0x10 (has extras) } ordered=true userid=0 (ActivityManager)
D( 500) wap: Intent from SIM 0, current SIM 0, current DataState DISCONNECTED (MobileDataStateTracker)
D( 500) wap: wap setting isAvailable to false (MobileDataStateTracker)
D( 500) wap: Received state=DISCONNECTED, old=DISCONNECTED, reason=dataDetached (MobileDataStateTracker)
D( 500) BDC-Calling finishReceiver: IIntentReceiver=41c46ba0 (ActivityThread)
– “tag”格式 : ” 优先级 / 标签 : 日志信息”, 使用adb logcat -v tag 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -v tag
——— beginning of /dev/log/system
I/PowerManagerService: setBrightness mButtonLight 0.
D/PowerManagerService: updateScreenStateLocked: mDisplayReady=true, newScreenState=2, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x1, mBootCompleted=true
D/PowerManagerService: handleSandman: canDream=true, mWakefulness=Awake
– “thread”格式 : ” 优先级 ( 进程ID : 线程ID) 标签 : 日志内容 “, 使用adb logcat -v tag 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -v thread
——— beginning of /dev/log/system
V( 500: 2141) getTasks: max=1, flags=0, receiver=null
V( 500: 2141) com.lewa.launcher/.Launcher: task=TaskRecord{41dccc20 #425 A com.lewa.launcher U 0}
V( 500: 2141) We have pending thumbnails: null
V( 500: 2140) getTasks: max=1, flags=0, receiver=null
– “raw”格式 : 只输出日志信息, 不附加任何其他 信息, 如 优先级 标签等, 使用adb logcat -v raw 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -v raw
——— beginning of /dev/log/system
notifications are enabled for com.kindroid.security
Assigned score=0 to Notification(pri=0 contentView=com.kindroid.security/0x7f030052 vibrate=null sound=null defaults=0x0 flags=0x2 kind=[null])
Native set alarm :Alarm{41e1ca00 type 3 com.kindroid.security}
reset poweroff alarm none
– “time”格式 : “日期 时间 优先级 / 标签 (进程ID) : 进程名称 : 日志信息 “, 使用adb logcat -v time 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -v time
——— beginning of /dev/log/system
04-25 17:18:13.019 V/ActivityManager( 500): Broadcast sticky: Intent { act=android.intent.action.SIG_STR flg=0x10 (has extras) } ordered=false userid=-1
04-25 17:18:13.157 V/NotificationService( 500): enqueueNotificationInternal: pkg=com.kindroid.security id=1020 notification=Notification(pri=0 contentView=com.kindroid.security/0x7f030052 vibrate=null sound=null defaults=0x0 flags=0x2 kind=[null])
04-25 17:18:13.158 V/NotificationService( 500): notifications are enabled for com.kindroid.security
04-25 17:18:13.158 V/NotificationService( 500): Assigned score=0 to Notification(pri=0 contentView=com.kindroid.security/0x7f030052 vibrate=null sound=null defaults=0x0 flags=0x2 kind=[null])
04-25 17:18:13.555 V/ActivityManager( 500): getTasks: max=1, flags=0, receiver=null
– “long”格式:” [ 日期 时间 进程ID : 线程ID 优先级 / 标签] 日志信息 “, 输出以上提到的所有的头信息, 使用adb logcat -v long 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -v long
——— beginning of /dev/log/system
[ 04-25 17:21:18.118 500:0x2fe V/ActivityManager ]
We have pending thumbnails: null

[ 04-25 17:21:18.696 593:0x251 W/ActivityThread ]
Content provider com.android.providers.telephony.TelephonyProvider already published as telephony

[ 04-25 17:21:19.119 500:0x396 V/ActivityManager ]
getTasks: max=1, flags=0, receiver=null

清空日志缓存信息 : 使用 adb logcat -c 命令, 可以将之前的日志信息清空, 重新开始输出日志信息;

将缓存日志输出 : 使用 adb logcat -d 命令, 输出命令, 之后推出命令, 不会进行阻塞;

输出最近的日志 : 使用adb logcat -t 5 命令, 可以输出最近的5行日志, 并且不会阻塞;

[plain] view plaincopy
octopus@octopus:~adblogcatt5beginningof/dev/log/systembeginningof/dev/log/mainW/ADBSERVICES(10028):adb:unabletoopen/proc/10028/oomadjD/dalvikvm(23292):threadid=11:createdfrominterpD/dalvikvm(23292):startnewthreadD/dalvikvm(23292):threadid=11:notifydebuggerD/dalvikvm(23292):threadid=11(Thread24538):callingrun()octopus@octopus: 

查看日志缓冲区信息 : 使用 adb logcat -g 命令;

[plain] view plaincopy
octopus@octopus:~adblogcatg/dev/log/main:ringbufferis256Kb(255Kbconsumed),maxentryis5120b,maxpayloadis4076b/dev/log/system:ringbufferis256Kb(255Kbconsumed),maxentryis5120b,maxpayloadis4076boctopus@octopus: 

加载日志缓冲区 : 使用 adb logcat -b 缓冲区类型 命令;
– Android中的日志缓冲区 : system缓冲区 - 与系统相关的日志信息, radio缓冲区 - 广播电话相关的日志信息, events缓冲区 - 事件相关的日志信息, main缓冲区 - 默认的缓冲区;

[plain] view plaincopy
octopus@octopus:~adblogcatbradiot5D/PHONE(23599):[GeminiDataSubUtil]UAPPC64D/GSM(23599):[GDCT][simId1]apnType=defaultD/GSM(23599):[GDCT][simId1]isDataAllowed:notallowedduetogprs=1SIMnotloadeddesiredPowerState=falseD/GSM(23599):[GDCT][simId1]isDataPossible(default):possible=falseisDataAllowed=falseapnTypePossible=trueapnContextisEnabled=trueapnContextState()=IDLEI/MUXD(23591):[gsm0710muxd]3426:main():Framesreceived/dropped:18242/0octopus@octopus: 
octopus@octopus:~adblogcatbmaint5D/NotificationService(500):notification.sound=nullD/NotificationService(500):mDmLock=falseI/ATCIJ(16576):Couldntfindatciservfwsocket;retryingaftertimeoutW/ADBSERVICES(246):createlocalservicesocket()name=shell:exportANDROIDLOGTAGS=;execlogcatbmaint5W/ADBSERVICES(16815):adb:unabletoopen/proc/16815/oomadjoctopus@octopus: 
octopus@octopus:~adblogcatbsystemt5D/PowerManagerService(500):updateScreenStateLocked:mDisplayReady=true,newScreenState=0,mWakefulness=0,mWakeLockSummary=0x1,mUserActivitySummary=0x0,mBootCompleted=trueD/PowerManagerService(500):handleSandman:canDream=false,mWakefulness=AsleepV/NotificationService(500):enqueueNotificationInternal:pkg=com.kindroid.securityid=1020notification=Notification(pri=0contentView=com.kindroid.security/0x7f030052vibrate=nullsound=nulldefaults=0x0flags=0x2kind=[null])V/NotificationService(500):notificationsareenabledforcom.kindroid.securityV/NotificationService(500):Assignedscore=0toNotification(pri=0contentView=com.kindroid.security/0x7f030052vibrate=nullsound=nulldefaults=0x0flags=0x2kind=[null])octopus@octopus: 
octopus@octopus:~adblogcatbeventt5Unabletoopenlogdevice/dev/log/event:Nosuchfileordirectoryoctopus@octopus:  adb logcat -b events -t 5
I/notification_cancel( 500): [com.kindroid.security,1026,NULL,0,0,64]
I/notification_enqueue( 500): [com.kindroid.security,1020,NULL,0,Notification(pri=0 contentView=com.kindroid.security/0x7f030052 vibrate=null sound=null defaults=0x0 flags=0x2 kind=[null])]
I/notification_cancel( 500): [com.kindroid.security,1026,NULL,0,0,64]
I/notification_enqueue( 500): [com.kindroid.security,1020,NULL,0,Notification(pri=0 contentView=com.kindroid.security/0x7f030052 vibrate=null sound=null defaults=0x0 flags=0x2 kind=[null])]
I/notification_cancel( 500): [com.kindroid.security,1026,NULL,0,0,64]
octopus@octopus:~$

以二进制形式输出日志 : 使用 adb logcat -B 命令;

[plain] view plaincopy
octopus@octopus:~$ adb logcat -B -t 5
O��_�3ZS�4gps_mt3326nmea_reader_parse: line = 1218GPS get accuracy failed, fix mode:1
^��_�3ZS�=gps_mt3326nmea_reader_addc: line = 1331the structure include nmea_cb address is 0x658cc8e8
H��_�3ZSEGEgps_mt3326nmea_reader_addc: line = 1332nmea_cb address is 0x5d2fe279
i���3ZS�)>ADB_SERVICEScreate_local_service_socket() name=shell:export ANDROID_LOG_TAGS=”” ; exec logcat -B -t 5
7*E*E�3ZSo�YADB_SERVICESadb: unable to open /proc/17706/oom_adj

(2) 过滤项解析

过滤项格式 : [:priority] , 标签:日志等级, 默认的日志过滤项是 ” *:I ” ;

– V : Verbose (明细);

– D : Debug (调试);

– I : Info (信息);

– W : Warn (警告);

– E : Error (错误);

– F: Fatal (严重错误);

– S : Silent(Super all output) (最高的优先级, 可能不会记载东西);

过滤指定等级日志 : 使用 adb logcat 10 *:E 命令, 显示 Error 以上级别的日志;

[plain] view plaincopy
octopus@octopus:~$ adb logcat *:E

Note: log switch off, only log_main and log_events will have logs!
——— beginning of /dev/log/main
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/dalvikvm( 756): GC_CONCURRENT freed 1809K, 27% free 19489K/26695K, paused 16ms+5ms, total 109ms
E/WifiHW ( 441): wifi_send_command : SCAN ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/dalvikvm( 756): GC_CONCURRENT freed 1820K, 27% free 19490K/26695K, paused 16ms+3ms, total 102ms
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;

过滤指定标签等级日志 : 使用 adb logcat WifiHW:D *:S 命令进行过滤;

– 命令含义 : 输出10条日志, 日志是 标签为 WifiHW, 并且优先级 Debug(调试) 等级以上的级别的日志;

–注意 *:S : 如果没有 *S 就会输出错误;

[plain] view plaincopy
octopus@octopus:~$ adb logcat WifiHW:D *:S

Note: log switch off, only log_main and log_events will have logs!
——— beginning of /dev/log/main
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;

可以同时设置多个过滤器 : 使用adb logcat WifiHW:D dalvikvm:I *:S 命令, 输出 WifiHW 标签 的 Debug 以上级别 和 dalvikvm 标签的 Info 以上级别的日志;

[plain] view plaincopy
octopus@octopus:~$ adb logcat WifiHW:D dalvikvm:I *:S

Note: log switch off, only log_main and log_events will have logs!
——— beginning of /dev/log/main
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/dalvikvm( 756): GC_CONCURRENT freed 1820K, 27% free 19490K/26695K, paused 17ms+2ms, total 110ms
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/dalvikvm( 756): GC_CONCURRENT freed 1810K, 27% free 19489K/26695K, paused 17ms+5ms, total 108ms
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;

  1. 使用管道过滤日志

(1) 过滤固定字符串

过滤固定字符串 : 只要命令行出现的日志都可以过滤, 不管是不是标签;

– 命令 : adb logcat | grep Wifi ;

[plain] view plaincopy
octopus@octopus:~$ adb logcat | grep Wifi
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;
E/WifiHW ( 441): wifi_send_command : AP_SCAN 1 ; interface index=0;
E/WifiHW ( 441): wifi_send_command : SCAN_RESULTS ; interface index=0;

过滤字符串忽略大小写 : adb logcat | grep -i wifi ;

(2) 使用正则表达式匹配

分析日志 : 该日志开头两个字符是 “V/”, 后面开始就是标签, 写一个正则表达式 “^..ActivityManager”, 就可以匹配日志中的 “V/ActivityManager” 字符串;

[plain] view plaincopy
V/ActivityManager( 574): getTasks: max=1, flags=0, receiver=null

正则表达式过滤日志: 使用上面的正则表达式组成命令 adb logcat | grep “^..Activity” ;

本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:

  • Markdown和扩展Markdown简洁的语法
  • 代码块高亮
  • 图片链接和图片上传
  • LaTex数学公式
  • UML序列图和流程图
  • 离线写博客
  • 导入导出Markdown文件
  • 丰富的快捷键

快捷键

  • 加粗 Ctrl + B
  • 斜体 Ctrl + I
  • 引用 Ctrl + Q
  • 插入链接 Ctrl + L
  • 插入代码 Ctrl + K
  • 插入图片 Ctrl + G
  • 提升标题 Ctrl + H
  • 有序列表 Ctrl + O
  • 无序列表 Ctrl + U
  • 横线 Ctrl + R
  • 撤销 Ctrl + Z
  • 重做 Ctrl + Y

Markdown及扩展

Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档,然后转换成格式丰富的HTML页面。 —— [ 维基百科 ]

使用简单的符号标识不同的标题,将某些文字标记为粗体或者斜体,创建一个链接等,详细语法参考帮助?。

本编辑器支持 Markdown Extra ,  扩展了很多好用的功能。具体请参考Github.

表格

Markdown Extra 表格语法:

项目 价格 Computer $1600 Phone $12 Pipe $1

可以使用冒号来定义对齐方式:

项目 价格 数量 Computer 1600 元 5 Phone 12 元 12 Pipe 1 元 234

定义列表

Markdown Extra 定义列表语法:
项目1
项目2
定义 A
定义 B
项目3
定义 C

定义
代码块语法遵循标准markdown代码,例如:

@requires_authorizationdef somefunc(param1='', param2=0):    '''A docstring'''    if param1 > param2: # interesting        print 'Greater'    re1) or Noneclass SomeClass:    pass>>> message = '''interpreter... prompt'''

脚注

生成一个脚注1.

目录

[TOC]来生成目录:

  • 欢迎使用Markdown编辑器写博客
    • 快捷键
    • Markdown及扩展
      • 表格
      • 定义列表
      • 脚注
      • 目录
      • 数学公式
      • UML 图
    • 离线写博客
    • 浏览器兼容

数学公式

使用MathJax渲染LaTex 数学公式,详见math.stackexchange.com.

  • 行内公式,数学公式为:Γ(n)=(n1)!nN
  • 块级公式:

x=b±b24ac2a

更多LaTex语法请参考 这儿.

UML 图:

可以渲染序列图:

Created with Raphaël 2.1.0张三张三李四李四嘿,小四儿, 写博客了没?李四愣了一下,说:忙得吐血,哪有时间写。

或者流程图:

Created with Raphaël 2.1.0开始我的操作确认?结束yesno
  • 关于 序列图 语法,参考 这儿,
  • 关于 流程图 语法,参考 这儿.

离线写博客

即使用户在没有网络的情况下,也可以通过本编辑器离线写博客(直接在曾经使用过的浏览器中输入write.blog.csdn.net/mdeditor即可。Markdown编辑器使用浏览器离线存储将内容保存在本地。

用户写博客的过程中,内容实时保存在浏览器缓存中,在用户关闭浏览器或者其它异常情况下,内容不会丢失。用户再次打开浏览器时,会显示上次用户正在编辑的没有发表的内容。

博客发表后,本地缓存将被删除。 

用户可以选择 把正在写的博客保存到服务器草稿箱,即使换浏览器或者清除缓存,内容也不会丢失。

注意:虽然浏览器存储大部分时候都比较可靠,但为了您的数据安全,在联网后,请务必及时发表或者保存到服务器草稿箱

浏览器兼容

  1. 目前,本编辑器对Chrome浏览器支持最为完整。建议大家使用较新版本的Chrome。
  2. IE9以下不支持
  3. IE9,10,11存在以下问题
    1. 不支持离线功能
    2. IE9不支持文件导入导出
    3. IE10不支持拖拽文件导入


  1. 这里是 脚注内容. ↩
0 0
原创粉丝点击