Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7683055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T18:42:32+00:00 2026-05-31T18:42:32+00:00

I am making text editor in netbeans and have added jMenuItems called Copy,Cut &

  • 0

I am making text editor in netbeans and have added jMenuItems called Copy,Cut & Paste in the Edit menu.

How do I enable these buttons to perform these functions after actionPerformed()

Here is my attempt:

    private void CopyActionPerformed(java.awt.event.ActionEvent evt) {                                     

       JMenuItem Copy = new JMenuItem(new DefaultEditorKit.CopyAction()); 
    }                                    

    private void PasteActionPerformed(java.awt.event.ActionEvent evt) {                                      
     JMenuItem Paste = new JMenuItem(new DefaultEditorKit.PasteAction()); 
    }                                     

    private void CutActionPerformed(java.awt.event.ActionEvent evt) {                                    
       JMenuItem Cut = new JMenuItem(new DefaultEditorKit.CutAction()); 
    }                                   
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T18:42:33+00:00Added an answer on May 31, 2026 at 6:42 pm

    simple editor example with cut ,copy ,paste:

          public class SimpleEditor extends JFrame {
    
          public static void main(String[] args) {
          JFrame window = new SimpleEditor();
          window.setVisible(true);
          }
          private JEditorPane editPane;   
    
          public SimpleEditor() {
          editPane = new JEditorPane("text/rtf","");
          JScrollPane scroller = new JScrollPane(editPane);
          setContentPane(scroller);
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          JMenuBar bar = new JMenuBar();
          setJMenuBar(bar);
          setSize(600,500);
    
          JMenu editMenu = new JMenu("Edit");
    
          Action cutAction = new DefaultEditorKit.CutAction();
          cutAction.putValue(Action.NAME, "Cut");
          editMenu.add(cutAction);
    
          Action copyAction = new DefaultEditorKit.CopyAction();
          copyAction.putValue(Action.NAME, "Copy");
          editMenu.add(copyAction);
    
          Action pasteAction = new DefaultEditorKit.PasteAction();
          pasteAction.putValue(Action.NAME, "Paste");
          editMenu.add(pasteAction);
    
          bar.add(editMenu);
       }
    
    }
    

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So, I'm making this text editor from scratch using a custom edit control. As
I'm making a fairly simple text editor, and I have a question about my
I am making my Rich text editor. I have a textarea and an iframe.
I am making a text editor using Java swing. I am using JTextArea for
I am making a text based game in Java. I have a text field,
I'm making a game and in the menu I want to display the text
I have the following HTML (note the CSS making the background black and text
Im making a portion of my app using the netbeans gui editor. Great so
I'm making a text editor using Text Area. Which user can change font size,
can you advice what to use for making tree structured text editor? I used

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.