Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Im beginner with java and i realy dont now how to do that, anybody could explain to me ?

  1. #1
    Junior Member
    Join Date
    Oct 2020
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Im beginner with java and i realy dont now how to do that, anybody could explain to me ?

    Objective: to develop a Java program to perform the pre-processing step of a text to be analyzed as a digraph by the free software tool Gephi. The program should accept a list of filenames of the plain text type (.txt) and, for each of them, record an output in .csv format containing lists of adjacencies indicating succession of words for later construction of digraphs, as described below :

    each word is a unique node of the digraph (beginning of an adjacency list);

    node A has an arc for node B if and only if the word represented by B follows that represented by A in the text;

    each line of the output file starts with the word that represents the origin node, followed by the words that are the destinations of the arcs that start from it, separated by spaces or commas (Gephi format).

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Im beginner with java and i realy dont now how to do that, anybody could explain to me ?

    What have you tried?
    Do you have any specific java programming questions?

    Be sure to wrap your code with code tags:

    [code]
    **YOUR CODE GOES HERE**
    [/code]

    to get highlighting and preserve formatting.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Ip pinging programm with tables, realy need help
    By reinisla in forum What's Wrong With My Code?
    Replies: 4
    Last Post: June 5th, 2013, 02:54 PM
  2. Beginner in Java, something occured which I can't explain.
    By jjk in forum What's Wrong With My Code?
    Replies: 4
    Last Post: December 27th, 2012, 08:47 PM
  3. I dont see anything wrong with this(simple beginner code)
    By Olympaphibian89 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: September 26th, 2012, 03:11 PM
  4. New to Java, could you explain something to me?
    By TP-Oreilly in forum Java Theory & Questions
    Replies: 6
    Last Post: September 18th, 2011, 07:12 AM
  5. Replies: 1
    Last Post: December 13th, 2010, 05:13 AM