The export is the automated or semi-automated output of data set from one data format to another. The term refers to both act of exporting and to the result of the action, i.e. exported data set.
902
votes
19answers
189k views
How to do a “git export” (like “svn export”)
I've been wondering whether there is a good "git export" solution that creates a copy of a tree without the .git repository directory. There are at least three methods I know of:
git clone followed ...
55
votes
2answers
25k views
How do I export UIImage array as a movie?
I have a serious problem: I have an array with several UIImage objects. What I now want to do, is create movie from those images. But I don't have any idea how to do so.
I hope someone can help me or ...
3
votes
2answers
5k views
jqgrid + EF + MVC: How to export in excel? Which method you suggest?
I am using jqgrid (standard) with EF 4 + MVC3. I'd like to implement excel export. Which method you would suggest me?
To generate excel, I'd like to use this library by Dr Stephen Walther, which has ...
76
votes
3answers
28k views
How to export revision history from mercurial or git to cvs?
I'm going to be working with other people on code from a project that uses cvs. We want to use a distributed vcs to make our work and when we finish or maybe every once in a while we want to commit ...
6
votes
5answers
15k views
Export PDF pages to a series of images in Java
I need to export the pages of an arbitrary PDF document into a series of individual images in jpeg/png/etc format. I need to do this in in Java.
Although I do know about iText, PDFBox and various ...
11
votes
4answers
3k views
How to export C# methods?
How can we export C# methods?
I have a dll and I want to use its methods in the Python language with the ctypes module.
Because I need to use the ctypes module, I need to export the C# methods for ...
9
votes
3answers
20k views
Export DataTable to Excel File
I have a DataTable with 30+ columns and 6500+ rows.I need to dump the whole DataTable values into an Excel file.Can anyone please help with the C# code.I need each column value to be in a cell.To be ...
53
votes
7answers
37k views
Simple C# CSV Excel export class
Thought this might be handy for someone, this is an extremely simple CSV export class that I needed. Features:
Extremely simple to use
Escapes commas and quotes so excel handles them fine
Exports ...
43
votes
6answers
21k views
Get script of SQL Server data
I'm looking for a way to do something analogous to the MySql dump from SQL Server. I need to be able to pick the tables and export the schema and the data (or I can export the schema via SQL Server ...
5
votes
6answers
14k views
JSP generating Excel spreadsheet (XLS) to download
I have this application I'm developing in JSP and I wish to export some data from the database in XLS (MS Excel format).
Is it possible under tomcat to just write a file as if it was a normal Java ...
82
votes
6answers
27k views
bash: defining a variable with or without export
What is export for?
What is the difference between:
export name=value
and
name=value
3
votes
8answers
11k views
C++ DLL Export: Decorated/Mangled names
Created basic C++ DLL and exported names using Module Definition file (MyDLL.def).
After compilation I check the exported function names using dumpbin.exe
I expect to see:
SomeFunction
but I see ...
4
votes
6answers
15k views
Easy way to export a SQL table without access to the server or phpMyADMIN
I need a way to easily export and then import data in a MySQL table from a remote server to my home server. I don't have direct access to the server, and no utilities such as phpMyAdmin are installed. ...
6
votes
5answers
14k views
Write to CSV file and export it?
In C# ASP.net, could someone show me how I can write entries from an Array/List to a CSV file on the server and then open the file? I think the second part would be something like - ...
4
votes
7answers
12k views
Export to Word Document in C#
I'm looking for a .NET library that will allow creation of a Word document. I need to export HTML based content to a Word doc (97-2003 format, not docx).
I know that there are the Microsoft Office ...