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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T02:26:22+00:00 2026-06-07T02:26:22+00:00

I am working on a java application running on linux machine, that should change

  • 0

I am working on a java application running on linux machine, that should change a file’s time-stamp to another time which is stored in form of epoch.
The file whose time-stamp needs to be changed is present in local file system.

Ex – localFile.txt whose timestamp shows 17 Jul 5 20:03 needs to be changed to epoch “1341446400000”

I have written code like this –

private void modifyTime(final String localFile, final long originalEpoch) throws  IOException {
    String getDateFromEpoch = "date -d@" + String.valueOf(originalEpoch);
    //getDateFromEpoch is returned in form - "Thu Jul  5 20:03:32 UTC 2012"
    Process process = runCommand(getDateFromEpoch);
    InputStream iStream = process.getInputStream();
    BufferedReader bufReader = new BufferedReader(new InputStreamReader(iStream));
    String originalDate = bufReader.readLine();
    bufReader.close();

    String touch = "touch -c -d " + originalDate + " " + localFile;
    runCommand(touch);
}

private Process runCommand(final String cmd) throws IOException {
    Process p = Runtime.getRuntime().exec(cmd);
    try {
        p.waitFor();
    } catch (InterruptedException e) {
        // ignore this exception
    }
    return p;
}

Running "date -d@" + String.valueOf(originalEpoch); is returning something like Thu Jul 5 20:03:32 UTC 2012. Using this in touch command is not working for me.

Is there a way of doing this?

  • 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-06-07T02:26:25+00:00Added an answer on June 7, 2026 at 2:26 am

    Sounds like you just want File.setLastModified

    http://docs.oracle.com/javase/7/docs/api/java/io/File.html#setLastModified(long)

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

Sidebar

Related Questions

I'm working on a Swing application (currently running on Java 1.6 update 11) which
I have one java application which is running in my local machine . I
Im working on a Java Application that edits Pdf files. Furthermore a shell script
I'm working on a Java application that uses JavaSpace. We're developing this in Eclipse.
I am working on a Java Web Application that exposes a web service. This
I am working on a Java application that will use some Hibernate (annotated by
I am currently working on an application that should be able to detect wifi
I'm working on a Java EE 5 application running on Websphere 7.0, and am
PART 1 I am developing a Java application that should be release as a
I have a running Java GWT application, that I can compile using Eclipse. Now

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.