Projects tagged ‘csv’ and ‘export’


[8 total ]

0 Users

Live Glossary is a web based application, which allows users to view, create and edit a Glossary. It also has an administrative portion from which the administrator can accept or reject additions or ... [More] edits, populate the glossary with delimited data from a csv file and export a pure HTML version of the Glossary. [Less]
Created 11 months ago.

0 Users

CrossKnight Anima!DescriptionPortable PIM (personal information manager) written in Java. Eases your contacts information management. Some of its features are: Simple, intuitive and powerful design. ... [More] Many fields, supporting Unicode. Contact photo. Keep track of your contacts history ("where do I know this guy from?"). Groups and mailing lists management. Export contacts to vCard, PDF, LDIF, CSV, using filters. Have your contacts available in Mozilla Thunderbird or GMail. Import contacts from vCard. Use it anywhere. Just copy the folder with the application to your USB drive. Languages supported: English, Spanish. RequirementsJava runtime environment (or SDK) 1.6.0 or later. InstallationUnzip and run! [Less]
Created 3 months ago.

0 Users

MS Outlook doesn't support export to unicode csv, this one does. It will read all the contacts from your outlook and export them to unicode csv file on desktop.
Created about 1 month ago.

0 Users

Live Glossary is a web based application, which allows users to view, create and edit a Glossary. It also has an administrative portion from which the administrator can accept or reject additions or ... [More] edits, populate the glossary with delimited data from a csv file and export a pure HTML version of the Glossary. You can check out the main project page at http://www.zwongo.com/projects.php [Less]
Created 11 months ago.

0 Users

BeanFiles is a java library for importing and exporting javabeans to/from various file formats. Right now, it only supports importing from csv using opencsv and xls using POI. Check out the ... [More] examples. Beanfiles aims to facilitate type conversion and multiple input/output formats while reusing some of the underlying translation components. The library currently supports importing only, but has some useful features. It supports the following: No configuration (if column headers match bean property names) Property Mapping (if column headers do not match bean property names) Nested property resolutions (bean.childBean.property.whatever) Simple wildcard mappings (image* will build a list of strings where column header is imageXyz) Easily add custom translators (for instance a column is an id, and the bean property is a lookup) A nice use-case is creating beans with the beanfiles library, then using Hibernate to store objects to a relational model. There's a Google group for discussing this project: http://groups.google.com/group/beanfiles Example UsageConsider the following csv file: property1,property2,property3,property4,property5 line1_prop1,line1_prop2,line1_prop3,1,FALSE line2_prop1,line2_prop2,line2_prop3,2,TRUEIn order to map this data to the following Java Bean: public class SimpleBean { private String property1; private String property2; private String property3; private int property4; private boolean property5; public SimpleBean() {} public String getProperty1() { return property1; } public void setProperty1(String property1) { this.property1 = property1; } ... } Here's the Beanfiles code: InputStream input = getInputStream("files/csv/simple_properties.csv"); ReaderIterator iterator = new CSVReaderIterator(SimpleBean.class, input); input.close(); SimpleBean bean1 = iterator.next(); SimpleBean bean2 = iterator.next(); [Less]
Created 11 months ago.

0 Users

Some code to add a csv “export” action to active_scaffold plugin. Packaged as an active_scaffold plugin.
Created about 1 year ago.

0 Users

Project Description This Microsoft Outlook 2007 add-in exports mails, contacts, appointments, tasks and notes to serveral file formats (MSG, unicode MSG, RTF, TXT, CSV, ICS, vCard, HTML, XML). You ... [More] can export a complete folder with subfolders or only selected items. License This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. [Less]
Created 10 days ago.

0 Users

This add-in exports mails, contacts, appointments, tasks and notes from Microsoft Outlook 2007 to serveral file formats (MSG, unicode MSG, RTF, TXT, CSV, ICS, vCard, HTML, XML). You can export a ... [More] complete folder with subfolders or only selected items. [Less]
Created about 1 month ago.