| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Perl JavaコードをHTMLに

提供: MyMemoWiki
ナビゲーションに移動 検索に移動

Perl JavaコードをHTMLに

  1. open IN, "<c:\\test.java";
  2. open OUT, ">c:\\test.html";
  3.  
  4. print OUT "<style>";
  5. print OUT ".kwd{ color:blue;font-weight:bold; }";
  6. print OUT ".cmt{ color:green; }";
  7. print OUT ".lin{ color:#808080; }";
  8. print OUT ".lit{ color:#00ffff; }";
  9. print OUT ".code{ background-color:#efefff;border:1px solid lightgrey;font-family:monospace; }";
  10. print OUT "</style>";
  11.  
  12. print OUT "<div class='code'>";
  13. $c = 1;
  14. $isCmt = 0;
  15. while ( $line = <IN> ) {
  16. $line =~ s/\s*$//;
  17. $line =~ s/(&)/&/g;
  18. $line =~ s/(<)/</g;
  19. $line =~ s/(>)/>/g;
  20. $line =~ s/([ ])/ /g;
  21. $line =~ s/(\t)/    /g;
  22.  
  23. if ($line =~ /(\/\*)/) {
  24. $line =~ s/(\/\*)/<span class='cmt'>\1/;
  25. $isCmt = 1;
  26. }
  27. if ($isCmt) {
  28. if ($line =~ /(\*\/)/) {
  29. $line =~ s/(\*\/)/\1<\/span>/;
  30. $isCmt = 0;
  31. }
  32. } else {
  33. $line =~ s/(\bString\b|\babstract\b|\bcontinue\b|\bfor\b|\bnew\b|\bswitch\b|\bassert\b|\bdefault\b|\bif\b|\bpackage\b|\bsynchronized\b|\bboolean\b|\bdo\b|\bgoto\b|\bprivate\b|\bthis\b|\bbreak\b|\bdouble\b|\bimplements\b|\bprotected\b|\bthrow\b|\bbyte\b|\belse\b|\bimport\b|\bpublic\b|\bthrows\b|\bcase\b|\benum\b|\binstanceof\b|\breturn\b|\btransient\b|\bcatch\b|\bextends\b|\bint\b|\bshort\b|\btry\b|\bchar\b|\bfinal\b|\binterface\b|\bstatic\b|\bvoid\b|\bclass\b|\bfinally\b|\blong\b|\bstrictfp\b|\bvolatile\b|\bconst\b|\bfloat\b|\bnative\b|\bsuper\b|\bwhile\b)/<span class='kwd'>\1<\/span>/g;
  34. $line =~ s/(\/\/.*)/<span class='cmt'>\1<\/span>/g;
  35. }
  36. printf(OUT "<span class='lin'>%04d:</span> $line<br/>\n", $c);
  37.  
  38. $c++;
  39. }
  40. print OUT "</div>";
  41. close IN;
  42. close OUT;

テンプレート:Ref j2html.pl