使用颜色突出显示打印/复制LogCat输出?

时间:2011-04-27 16:16:29

标签: eclipse printing clipboard logcat android-logcat

LogCat输出的颜色突出显示非常丰富,有助于隔离问题。但是,有时我需要将其打印到纸张(或将其复制/粘贴到OpenOffice.org Writer文档中)的颜色!

有没有办法用颜色突出显示打印LogCat输出? (或者至少复制/粘贴它而不丢失颜色信息)?

2 个答案:

答案 0 :(得分:1)

假设可以在VIM IDE中打开LogCat输出。我找到了这个链接 - http://vimdoc.sourceforge.net/htmldoc/usr_06.html#06.5,它讲述了如何打印(以及颜色)。它还讨论了如何保存到HTML。试试吧。可能会有所帮助。

答案 1 :(得分:0)

我担心我没有在Eclipse内部突出显示的解决方案,但是如果你在Debian上使用gedit,你可以使用this language highlighter I wrote

<?xml version="1.0" encoding="UTF-8"?>
<language id="logcat" _name="logcat" version="2.0" _section="Others">
    <metadata>
        <property name="mimetypes">text/x-logcat</property>
        <property name="globs">*.logcat</property>
    </metadata>

    <styles>
        <style id="comment" _name="Comment" map-to="def:comment"/>
        <style id="verbose" _name="Verbose" map-to="def:identifier"/>
        <style id="debug"   _name="Debug"   map-to="def:preprocessor"/>
        <style id="info"    _name="Info"    map-to="def:type"/>
        <style id="warning" _name="Warning" map-to="def:constant"/>
        <style id="error"   _name="Error"   map-to="def:keyword"/>
        <style id="fatal"   _name="Fatal"   map-to="def:error"/>
        <style id="others"  _name="Others"  map-to="def:comment"/>
    </styles>

    <definitions>
        <context id="logcat">
            <include>
                <context id="comment" style-ref="comment">
                    <start>--</start>
                    <end>$</end>
                </context>
                <context id="comment" style-ref="comment">
                    <start>#</start>
                    <end>$</end>
                </context>
                <context id="datetime" style-ref="comment">
                    <start>^[0-9]</start>
                    <end>: </end>
                </context>

                <context id="verbose" style-ref="verbose">
                    <start>V/</start>
                    <end>$</end>
                </context>

                <context id="debug" style-ref="debug">
                    <start>D/</start>
                    <end>$</end>
                </context>

                <context id="info" style-ref="info">
                    <start>I/</start>
                    <end>$</end>
                </context>

                <context id="warning" style-ref="warning">
                    <start>W/</start>
                    <end>$</end>
                </context>

                <context id="error" style-ref="error">
                    <start>E/</start>
                    <end>$</end>
                </context>

                <context id="fatal" style-ref="fatal">
                    <start>F/</start>
                    <end>$</end>
                </context>
            </include>
        </context>
    </definitions>
</language>