ADF 11g provides an “export to excel” feature that allows you to take data from an ADF table into an excel sheet. But what about the other way around. Sometimes you need to work with excel sheets or comma separated values, and load the content of such a file into a database table. You could use the external table feature of the Oracle Database for that, or you just use any tool to load the csv contents into a database table. The use case I have is that the data in the csv needs to be validated and changed before it is committed into the database. In this post I show you how to load the csv contents into an ADF table component so you can edit the data before committing
Setting up the application
This post is based on a simple table and on a simple csv file. The Staff table definition is here:
CREATE TABLE ALS_STAFF ( ID NUMBER(3,0), FIRST_NAME VARCHAR2(20 BYTE), LAST_NAME VARCHAR2(30 BYTE), EMAIL_ADDRESS VARCHAR2(100 BYTE), CONSTRAINT ALS_STF_PK PRIMARY KEY (ID) ENABLE )
And the csv file
ID,FRST_NAME, LAST_NAME,EMAIL 100,Peter,Jones,testmail@mycompany.org 101,John,Janssen,a-testmail@mycompany.org 102,Thomas,Higgins,b-testmail@mycompany.org .............
First step in the process is the creation of Business Components for the ALS_STAFF table.
Next I created a TaskFlow, a PageFragment, and a Page in which I implement the csvLoader functionallity.
Next I drop the AlsStaff collection from the datacontrol on the page as an ADF table component. This table is the one that I want to load with the data form a CSV file. To refresh the table after the file is loaded, I bind the table component so I can add it as a partialTartget. To upload the file I use an ADF inputfile component. This will open a dialog for me to select the file. Finally I add a commit button in order to actually save the table contents to the database.
The ’empty’ page now looks like this:
Setting up CSV2ADF
After uploading the file, I need it to be processed immediately, so I set the autosubmit property of the inputFile component to true and I add a valueChangeListener.
public void fileUploaded(ValueChangeEvent valueChangeEvent) { // Add event code here... UploadedFile file = (UploadedFile)valueChangeEvent.getNewValue(); try { parseFile(file.getInputStream()); AdfFacesContext.getCurrentInstance().addPartialTarget(staffTable); } catch (IOException e) { // TODO } }
In this valueChangeListener I call the a method (parseFile()) which takes care of my CSV2ADF transformation. Here is the step by step guide.
First I create a new BufferReader that I use to read the file line by line.
Next I have to find the iterator associated with the component in which I want to lead the contents of the file.
The table is bound, so I can find the iterator via (CollectionModel)staffTable.getValue() and (JUCtrlHierBinding)_tableModel.getWrappedData().
Now we really can get started processing the file line by line. I assume that the first line of the file contains header information, so I always skip that line. For every line in the file I create a new row in the table. Then I use a StringTokenizer that splits the line after every comma so every line is processed token by token. Every attribute in the row now can be assigned the value of the corresponding token. Any exception are handled and communicated back to the user.
public void parseFile(java.io.InputStream file) { BufferedReader reader = new BufferedReader(new InputStreamReader(file)); String strLine = ""; StringTokenizer st = null; int lineNumber = 0, tokenNumber = 0; Row rw = null; CollectionModel _tableModel = (CollectionModel)staffTable.getValue(); //the ADF object that implements the CollectionModel is JUCtrlHierBinding. It //is wrapped by the CollectionModel API JUCtrlHierBinding _adfTableBinding = (JUCtrlHierBinding)_tableModel.getWrappedData(); //Acess the ADF iterator binding that is used with ADF table binding DCIteratorBinding it = _adfTableBinding.getDCIteratorBinding(); //read comma separated file line by line try { while ((strLine = reader.readLine()) != null) { lineNumber++; // create a new row skip the header (header has linenumber 1) if (lineNumber>1) { rw = it.getNavigatableRowIterator().createRow(); rw.setNewRowState(Row.STATUS_INITIALIZED); it.getNavigatableRowIterator().insertRow(rw); } //break comma separated line using "," st = new StringTokenizer(strLine, ","); while (st.hasMoreTokens()) { //display csv values tokenNumber++; String theToken = st.nextToken(); System.out.println("Line # " + lineNumber + ", Token # " + tokenNumber + ", Token : " + theToken); if (lineNumber>1){ // set Attribute Values switch (tokenNumber) { case 1: rw.setAttribute("Id", theToken); case 2: rw.setAttribute("FirstName", theToken); case 3: rw.setAttribute("LastName", theToken); case 4: rw.setAttribute("EmailAddress", theToken); } } } //reset token number tokenNumber = 0; } } catch (IOException e) { // TODO add more FacesContext fctx = FacesContext.getCurrentInstance(); fctx.addMessage(staffTable.getClientId(fctx), new FacesMessage(FacesMessage.SEVERITY_ERROR, "Content Error in Uploaded file", e.getMessage())); } catch (Exception e) { FacesContext fctx = FacesContext.getCurrentInstance(); fctx.addMessage( null, new FacesMessage(FacesMessage.SEVERITY_ERROR, "Data Error in Uploaded file", e.getMessage())); } }
When I run the application, I can select a file to upload, the content of the file is immediately displayed in the table, I can edit the data, and once I’m ready I can commit the data to the database by hitting the commit button.
This example just loads the content of a pre-defined csv file into a predefined ADF table component in order to save the content to a database table. A possible next step could be to load any csv file into an ADF table component that is created at runtime.
A demo workspace can be downloaded here.
how to verify theToken is whether null or not?
Would be great to see a sample of importing an xml file into a column of a table. Thanks.
Would it be possible for you to attach the sample project? Great article.
Thanks for useful article,
but i can’t able to understand what is staffTable in the code.
Can you please explain about that.
Thanks,
SAN
Please attach a sample 🙂
Â
thanks,
Very good article.
I need this source code,If u can provide its very help full for me
i didn’t understand the staff table?? can you please post example of it. i.e. the application . I am in hurry.
Is it the tabel id??? and it’s not working when i am doing it.
Hi,
Is it possible to connect with SQLLite database ??
how the way to export CSV file..
any help on that ??
Hi,, This article is very helpfull.
But How the way if we want to export data excel to adf table, the data are not in CSV format but in .xls.
could you help me please ?
thanks in advance.
Hi Priyanka,
The ‘staffTable’ refers to the componentbinding of the <af:table />component. I admit that it is not clear from the code in the post. What I did is bind the table component so I am able to programatically refresh it. So if you need to replace ‘staffTable’ with something, this would clearly be the property that represents your table
Hi
I tried to follow the same process but i donno which value to replace for staff table AdfFacesContext.getCurrentInstance().addPartialTarget(staffTable);
I tried with ADF table id but dint work. any help on that?
Luc,
Very good article.Â
This approach can be extended to support lots of generalized application interfaces.
Thanks a lot,
Tiah