Click here to Skip to main content
15,886,362 members
Home / Discussions / Java
   

Java

 
AnswerRe: any one has idea about how to get memory usage of remote server using java? Pin
jschell27-Jan-18 6:41
jschell27-Jan-18 6:41 
GeneralRe: any one has idea about how to get memory usage of remote server using java? Pin
Member 136650076-Feb-18 18:07
Member 136650076-Feb-18 18:07 
QuestionSigar API Pin
Member 1363596721-Jan-18 18:13
Member 1363596721-Jan-18 18:13 
QuestionRe: Sigar API Pin
Richard MacCutchan21-Jan-18 21:59
mveRichard MacCutchan21-Jan-18 21:59 
AnswerRe: Sigar API Pin
Member 1363596722-Jan-18 17:24
Member 1363596722-Jan-18 17:24 
GeneralRe: Sigar API Pin
Richard MacCutchan22-Jan-18 21:36
mveRichard MacCutchan22-Jan-18 21:36 
GeneralRe: Sigar API Pin
Member 1363596722-Jan-18 21:37
Member 1363596722-Jan-18 21:37 
QuestionFind and query files in a directory in date format yyymmdd Pin
hm916-Jan-18 22:45
hm916-Jan-18 22:45 
Hi

I have a directory where log txt files are logged. Each log file has the following title date format 20180114.log, which is yyymmdd.

I want to search for data in the preceding file (date) so if the current date file is 20180114.log, I want to search the previous day 20180113.log, and then output the data i search for in anther text file.


How do I achieve this in java? any code examples I can follow?

I made a start by displaying the list of the files in the directory but could do with some help to achieve the above

public static void main(String[] args) {
File currentDir = new File("\\\\directory Path"); // current directory
displayDirectoryContents(currentDir);
}

public static void displayDirectoryContents(File dir) {
try {
File[] files = dir.listFiles();
for (File file : files) {

System.out.println(" file:" + file.getCanonicalPath());
}

} catch (IOException e) {
e.printStackTrace();
}
}


thanks in advance

AnswerRe: Find and query files in a directory in date format yyymmdd Pin
jschell17-Jan-18 14:29
jschell17-Jan-18 14:29 
AnswerRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan17-Jan-18 21:56
mveRichard MacCutchan17-Jan-18 21:56 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
hm917-Jan-18 23:13
hm917-Jan-18 23:13 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan17-Jan-18 23:16
mveRichard MacCutchan17-Jan-18 23:16 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
hm917-Jan-18 23:29
hm917-Jan-18 23:29 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan17-Jan-18 23:32
mveRichard MacCutchan17-Jan-18 23:32 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
hm917-Jan-18 23:59
hm917-Jan-18 23:59 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan18-Jan-18 0:32
mveRichard MacCutchan18-Jan-18 0:32 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
hm918-Jan-18 1:29
hm918-Jan-18 1:29 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan18-Jan-18 1:45
mveRichard MacCutchan18-Jan-18 1:45 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
hm918-Jan-18 1:55
hm918-Jan-18 1:55 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan18-Jan-18 2:54
mveRichard MacCutchan18-Jan-18 2:54 
QuestionWhat is wrong with this java code, why is it not printing Factorial? Pin
Member 1362428615-Jan-18 10:02
Member 1362428615-Jan-18 10:02 
AnswerRe: What is wrong with this java code, why is it not printing Fibonacci? Pin
Richard MacCutchan15-Jan-18 21:45
mveRichard MacCutchan15-Jan-18 21:45 
GeneralRe: What is wrong with this java code, why is it not printing Fibonacci? Pin
Member 1362428616-Jan-18 2:07
Member 1362428616-Jan-18 2:07 
GeneralRe: What is wrong with this java code, why is it not printing Fibonacci? Pin
Richard Deeming16-Jan-18 3:07
mveRichard Deeming16-Jan-18 3:07 
AnswerRe: What is wrong with this java code, why is it not printing Factorial? Pin
vishaljamdagni29-Jan-18 18:58
professionalvishaljamdagni29-Jan-18 18:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.