Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Set JTextField caret color (Java)

Complete source code below will show you, how to set JTextField caret color.

****************************************************************
COMPLETE SOURCE CODE FOR : SetJTextFieldCaretColor.java
****************************************************************
import javax.swing.*;

import java.awt.*;

public class SetJTextFieldCaretColor
{
public static void main(String[]args)
{
 JTextField jtf=new JTextField(20);
 jtf.setFont(new Font("Verdana",Font.BOLD,34));

 JFrame myFrame=new JFrame("Set JTextField caret color");

 //Set caret color base on RGB value
 //R=255
 //G=0
 //B=0
 //You can get RGB value from color picker at above
 jtf.setCaretColor(new Color(255,0,0));

 myFrame.setLayout(new FlowLayout());
 myFrame.add(jtf);
 myFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 myFrame.pack();
 myFrame.setLocationRelativeTo(null);
 myFrame.setVisible(true);
}
}


****************************************************************
JUST COMPILE AND EXECUTE IT
****************************************************************