1

Web サイトに投稿したい Java コードがあります。

コードは次のようになります。

class Integers {
  public static void main(String[] arguments) {
    int c; //declaring a variable

  /* Using for loop to repeat instruction execution */

    for (c = 1; c <= 10; c++) {
      System.out.println(c);
    }
  }
}

それを見栄えの良い HTML に変換して自分の Web サイトに投稿するには、次のように記述する必要があります。

<div class="geshifilter">
<pre class="java geshifilter-java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> Integers <span style="color: #009900;">{</span>
  <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">(</span><span style="color: #003399;">String</span><span style="color: #009900;">[</span><span style="color: #009900;">]</span> arguments<span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
    <span style="color: #000066; font-weight: bold;">int</span> c<span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//declaring a variable</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">/* Using for loop to repeat instruction execution */</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #009900;">(</span>c <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> c <span style="color: #339933;">&lt;=</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">;</span> c<span style="color: #339933;">++</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
      <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">(</span>c<span style="color: #009900;">)</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">}</span>
  <span style="color: #009900;">}</span>
<span style="color: #009900;">}</span></pre></div>

これを行うには面倒が多すぎます。もっと簡単な方法はありますか?

4

2 に答える 2

2

SyntaxHighlighterを使用しています。あなたが探していることを正確に行う必要があります:http://alexgorbatchev.com/SyntaxHighlighter/

于 2013-07-29T03:40:31.160 に答える
1

すべてのコードを<pre class="prettyprint">または<code class="prettyprint">要素内に配置し、google-code-prettify JavaScript プラグインを Web ページに追加します。チュートリアルへのリンクは次のとおりです。

http://google-code-prettify.googlecode.com/svn/trunk/README.html

于 2013-07-29T03:42:10.807 に答える