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

  • Home
  • SEARCH
  • 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 6901931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:44:07+00:00 2026-05-27T07:44:07+00:00

I am trying to get name of a File object without its extension, e.g.

  • 0

I am trying to get name of a File object without its extension, e.g. getting “vegetation” when the filename is “vegetation.txt.” I have tried implementing this code:

openFile = fileChooser.getSelectedFile();
String[] tokens = openFile.getName().split(".");
String name = tokens[0];

Unfortunately, it returns a null object. There is a problem just in the defining the String object, I guess, because the method getName() works correctly; it gives me the name of the file with its extension.

Do you have any idea?

  • 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-27T07:44:08+00:00Added an answer on May 27, 2026 at 7:44 am

    If you want to implement this yourself, try this:

    String name = file.getName();
    int pos = name.lastIndexOf(".");
    if (pos > 0) {
        name = name.substring(0, pos);
    }
    

    (This variation doesn’t leave you with an empty string for an input filename like “.txt”. If you want the string to be empty in that case, change > 0 to >= 0.)


    You could replace the if statement with an assignment using a conditional expression, if you thought it made your code more readable; see @Steven’s answer for example. (I don’t think it does … but it is a matter of opinion.)


    It is arguably a better idea to use an implementation that someone else has written and tested. Apache FilenameUtils is a good choice; see @slachnick’s Answer, and also the linked Q&A.

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

Sidebar

Related Questions

I'm trying to send a File to the Server without success. I have this
I'm trying to get the name of the executable of a window that is
I am trying to get the name of the database I am connected to
I'm trying to get my name and trip input fields to line, but they're
I'm trying to get the instance name of my class. The way I do
I'm very new to c++ and boost. I'm trying to get the host name
Im trying to get some checkbox with a specific name document.getElementsByName(test); Unfortunatley i cant
Ok I am trying to get the users First Name the form gets their
i get this error when trying this: ERROR method name expected. How should i
I am trying to get the effective rights a user has on a file

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.