Inspiration

Brampton has an increase in immigration rate in the past year and it is starting to become a problem

What it does

app that allows new immigrants to fill out a survey to helps them connect a group immigrant in there area, which can further the understanding different the rules and regulations, financial and morale.

How I built it

created an app built front-end using BuildFire and created back-end Java-Fx

Challenges I ran into

Syntax Lack of knowledge programming in Java-Fx

Accomplishments that I'm proud of

Being able to construct a product in a short and limited time using adaptive abilities to switch working and non working software

What I learned

We learned about backend programming and used our understanding to create a backend program for our product

What's next for GroupImm

Add a access to website and database that can allow manage itself and also publish our app in app store and google play store

CODE:

package finder;

import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException;

public class CSVReader {

public static final String delimiter = ",";
private static int counter = 0;
public static void read(String csvFile) {
    try {
        File file = new File(csvFile);
        FileReader fr = new FileReader(file);
        BufferedReader br = new BufferedReader(fr);

        String line = "";

        String[] tempArr;
        while ((line = br.readLine()) != null) {
            tempArr = line.split(delimiter);
            for (String tempStr : tempArr) {
                System.out.println(tempStr + " ");
                //System.out.print(tempStr.toUpperCase());

                compare (tempStr){

                }


            }

        }
        br.close();

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

}

private static void compare(String tempStr) {
    // TODO Auto-generated method stub

    System.out.println("TIRTH and NIKUNJ ar both from INDIA, speak GUJUARTI and are HINDU");
    System.out.println(
}

public static void main(String[] args) {
    // csv file to read
    String csvFile = "C:/Users/tirth/Downloads/csv/Responses.csv";
    CSVReader.read(csvFile);
}

}

Built With

  • bulidfire
  • c-and-java
Share this project:

Updates