Strike through text in Java
Description
The following code shows how to strike through text.
Example
import java.awt.Graphics;
import java.awt.font.TextAttribute;
import java.util.Hashtable;
import java.awt.Font;
import javax.swing.JComponent;
import javax.swing.JFrame;
/*from ww w . j a v a2 s . co m*/
class MyCanvas extends JComponent {
public void paint(Graphics g) {
Hashtable<TextAttribute, Object> map = new Hashtable<TextAttribute, Object>();
Font font = new Font(Font.SERIF, Font.PLAIN, 24);
/* Strikethrouh is easy */
map.put(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON);
font = font.deriveFont(map);
g.setFont(font);
g.drawString("java2s.com", 45, 120);
}
}
public class Main {
public static void main(String[] a) {
JFrame window = new JFrame();
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setBounds(30, 30, 450, 450);
window.getContentPane().add(new MyCanvas());
window.setVisible(true);
}
}
The code above generates the following result.