Text area & cursor control

Text area & cursor control

Question:
Hi, I am looking for a way of displaying a textareabox and then being able to tell what text the userhas highlighted (with mouse) and then replacing thetext? Can this even be done with a applet?

Answer:
The java.awt.TextComponent class (from which TextArea is derived), hasthree methods to retrieve mouse selection information. ThegetSelectedText() method will return a String containing the selectedtext, and the getSelectionStart() and getSelectionEnd() methods willreturn the start and end positions of the selected text. If getSelected()returns null, then no text is selected. The TextArea component providesa method called replaceRange() (formerly replaceText() in JDK 1.0.2)with which you can replace the contents of part of the TextArea. Thefollowing example shows you how to use these methods to erase the textselection on the click of a button:

This example is an applicatoin, but youcan use the same technique in an applet.

import java.awt.*;import java.awt.event.*;public final class ReplaceText extends Frame {  private TextArea __textArea;  private Button __button;  private class ButtonListener implements ActionListener {    public void actionPerformed(ActionEvent event) {      int start, end;      String selection;      synchronized(__textArea) {	selection = __textArea.getSelectedText();	if(selection == null)	  return;	start = __textArea.getSelectionStart();	end   = __textArea.getSelectionEnd();	__textArea.replaceRange("", start, end);      }    }  }  public ReplaceText() {    setLayout(new BorderLayout());    __textArea = new TextArea("This is some sample text", 10, 40);    __textArea.setEditable(true);    __button   = new Button("Erase Selection");    __button.addActionListener(new ButtonListener());    add(__textArea, "Center");    add(__button, "South");  }  public static final void main(String[] args) {    ReplaceText example;    WindowListener exitListener;    exitListener = new WindowAdapter() {      public void windowClosing(WindowEvent e) {        Window window;        window = e.getWindow();        window.setVisible(false);        window.dispose();        System.exit(0);      }    };                         example = new ReplaceText();    example.addWindowListener(exitListener);    example.pack();    example.show();  }}
Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as