<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="12cm" height="12cm" viewBox="0 0 1000 1000"
xmlns="http://www.w3.org/2000/svg" version="1.1">
<line x1="100" y1="100" x2="500" y2="200" stroke="red" stroke-width="5" />
<circle cx="200" cy="100" r="50" stroke="black" stroke-width="3" />
</svg>
我想用java打印這些svg代碼。我知道我應該使用print方法來做到這一點,但每次我嘗試編譯java程序時,我都會遇到一堆錯誤。請幫幫我。以下是我的代碼:如何在java中打印svg?
class svg{
puclic static void main(String[] args){
System.out.print("
<?xml version=\"1.0\" standalone=\"no\"?>
<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"
\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">
<svg width=\"12cm\" height=\"12cm\" viewBox=\"0 0 1000 1000\"
xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">
<line x1=\"100\" y1=\"100\" x2=\"500\" y2=\"200\" stroke=\"red\" stroke-width=\"5\" />
<circle cx=\"200\" cy=\"100\" r=\"50\" stroke=\"black\" stroke-width=\"3\" />
</svg>
")
}
}
顯示你的代碼,顯示你得到的「一堆錯誤」。在此之前,沒有人可以幫助你。 – Dragondraikk
我已經更新了。 – Turf
你可以上傳*你在問題中陳述的一堆錯誤*,以便我們知道錯誤是? – Blip