5

以颜色突出显示的 LogCat 输出信息量很大,有助于隔离问题。然而,有时我需要用颜色将它打印到纸上(或复制/粘贴到 OpenOffice.org Writer 文档) !

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

4

2 回答 2

1

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

于 2011-05-09T16:00:05.113 回答
0

恐怕我没有在 Eclipse 中突出显示的解决方案,但如果你在 Debian 上使用 gedit,你可以使用我写的这个语言荧光笔

<?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>
于 2014-01-24T12:46:15.240 回答