如何将模板/ image / valyaev.png文件夹中的图像添加到百里香,使用几个选项,但是图像本身不显示,仅图像的轮廓或刻度线出现
我可以使用addInline添加它,但是我无法对图像执行任何操作,因此我想通过百里香叶本身进行添加
答案 0 :(得分:0)
为什么不将其复制到static / images路径中,然后使用以下语句:
<img
th:src="@{/images/valayev.jpg}"
答案 1 :(得分:0)
有时百里香叶不采用静态图像路径,在这种情况下,请使用该图像的基数64。
package testresults;
import java.util.*;
import java.io.*;
import javax.swing.*;
public class TestResults {
public static void main(String[] args) {
// TODO code application logic here
try
{
Scanner scFile = new Scanner(new File ("marks.txt"));
while(scFile.hasNext())
{
String line = scFile.nextLine();
Scanner scLine = new Scanner(line).useDelimiter("#");
String first = scLine.nextLine();
String second = scLine.nextLine();
double score = scLine.nextDouble();
boolean passFail = scLine.nextBoolean();
scLine.close();
System.out.println(first.charAt(0) + ". " + second + " " + score
+ " " + passFail);
}
scFile.close();
}
catch(FileNotFoundException e)
{
System.out.println("We messed up");
}
}
}