I am C programmer and now I moved to Java. I am trying to convert C program in Java program. C programs simply calculate term frequency and inverse document frequency (tf/idf).
Here is my problem (sounds very basic to Java experts)
I created one data class
public class Data {
private String fileName,fileText;
private int fileId;
private float value;
public void addData(String fileName, String fileText, float value){
this.fileName = fileName;
this.fileText = fileText;
this.value = value;
}
public int getFileId(){
return this.fileId;
}
public String getFileName(){
return this.fileName;
}
public String getFileText(){
return this.fileText;
}
public float getValue(){
return this.value;
}
}
This class is responsible to store file name, file text, and Value (tf value or idf value). Following class is responsible to store data:
public class main {
public static void main(String[] args) {
HashMap<String, Data> map = new HashMap<String, Data>();
Data dt = new Data();
dt.addData("abc.txt", "some contents", 2);
map.put("1",dt);
dt.addData("w", "some more contents in second file", 3);
map.put("2",dt);
System.out.println(map);
}
}
When I print map, it gives me some weird values. I think, I have to declare array of data class? I don't know how many files are there, therefore I can not put any static array number.
My Second question is that how can I calculate TF and IDF based on this data structure? In C program I simply read files, count the words divide by total number of words to get TF and a word divided by total occurrence of that word in all files to get IDF. Now I do not know how to do it using above data structure.
Before giving this question thumbs down, please ask me question and give me a chance to explain.
Thanks
EDIT: Weird values : {2=test2.Data@19821f, 1=test2.Data@19821f} May be these are objects...
THANKS ALL FOR YOUR ANSWERS. Is there any way to get specific value from Data class using getFileName etc. functions
?
println()"gives me some weird values", perhaps you could show what output you do get. Most Java programmers can guess what you're seeing, but it's good to be sure. Your weird values might be perfectly normal to another reader. – Greg Hewgill Dec 23 '10 at 22:20