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 5982773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:08:05+00:00 2026-05-22T22:08:05+00:00

I need to to add an incremental number to file exist before ,i know

  • 0

I need to to add an incremental number to file exist before ,i know how to chek that and how to add the number at the end but i need an idea how to incriment the number every time

look this e.g. to understand me
C:\MyFiles\File.pdf exists so try C:\MyFiles\File1.pdf
and next time
C:\MyFiles\File2.pdf

dont know how get the last incrementation

and plz see my code i can increment only one time

    int indexOfDot = fName.indexOf(".");
    //if theres a dot, start one character before it, otherwise,
    //start at the end of the string
    int startIndex = indexOfDot > -1 ? indexOfDot - 1 : fName.length() - 1;
    if(indexOfDot > -1)
         fileNameSuffix = fName.substring(indexOfDot, fName.length());
    //search backward on the name to see if it already
    //has a number and count the digits
    StringBuffer digits = new StringBuffer();
    char character = 0;
    for (int i = startIndex; i >= 0; i--)
    {
         character = fName.charAt(i);
         if (Character.isDigit(character))
         {
              digits.append(character);
         }
    }
    if (digits.length() > 0)
    {
          //There where already digits in the filename.
          //Create a number from the digits and add 1
          Integer newNumber =new Integer(Integer.parseInt(digits.toString()) + 1);
          //Then append that to the actual filename
          String actualFileName = fName.substring(0, startIndex + 1 - digits.length());
          rtnNewFileName = actualFileName + newNumber.toString() + fileNameSuffix;
    }else
    {
          //There where no digits in the filename
          //Append 1 to the actual filename
          String actualFileName = fName.substring(0, startIndex - digits.length());
          rtnNewFileName = actualFileName + "1" + fileNameSuffix;
   }

   file.setFileName(rtnNewFileName);

   out.println("<li>File Uploaded <br/>Form field : uploadfile"+"<BR> Uploaded file : "+file.getFileName()+" ("+file.getFileSize()+" bytes)"+"<BR> Content Type : "+file.getContentType());

    //Uses the bean now to store specified by jsp:setProperty at the top.
    upBean.store(mrequest, "uploadfile");
  • 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-22T22:08:06+00:00Added an answer on May 22, 2026 at 10:08 pm

    hi all i find the answer you have just to add (C0Py0) fore every new file uloaded after that test if your file exsite than call the method changing();

    <%!
    String reverseIt(String source) {
    int i, len = source.length();
    StringBuffer dest = new StringBuffer(len);

    for (i = (len - 1); i >= 0; i--)
      dest.append(source.charAt(i));
    return dest.toString();
    

    }

    %>
    <%!
    String changing(String ffName){
    String newName,ext,finalName;
    String invName,increment;
    String copyf=null;
    String test;
    int i=0;
    int j=0;
    int incr;
    int k=j+4;

    newName=ffName.substring(0,ffName.length()-4);
    ext = ffName.substring(ffName.length()-3,ffName.length());

      invName=reverseIt(newName);
    
                                    while(k != invName.length()){
    
                                     if( invName.substring(j,k).equals("yP0C")){
                                                                  copyf=invName.substring(0,j);
                                                                  k=invName.length()-1;
    
                                                                            }
                                     else{
                                         j++;
                                         k++;
                                        }
    
                                                                 }
    increment=reverseIt(copyf);
    //System.out.println(increment);
    incr=Integer.parseInt(increment);
    incr+=1;
    newName=newName.substring(0,newName.length()-(j-1));
    increment=String.valueOf(incr);
    finalName=newName+increment+"."+ext;
    

    return finalName;
    }

    %>

    i wish that will help outhers

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

Sidebar

Related Questions

I need to add a specific column if it does not exist. I have
I need to develop a file indexing application in python and wanted to know
I need add the first_name and last_name fields associated with that User model and
i need to add a element div and within that div i need to
I need to add a web part zone to a wiki page. I'm opening
I need to add DVD writing functionality to an application I'm working on. However
I need to add role based permissions to my Rails application, and am wondering
I need to add full web search to my site. I need something like
I need to add functionality to my J2EE-based wep application: 1) Take some page,
I need to add a tooltip/alt to a td element inside of my tables

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.