Java Doc for DataExport.java in  » Issue-Tracking » scarab-0.21 » org » tigris » scarab » screens » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Issue Tracking » scarab 0.21 » org.tigris.scarab.screens 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.tigris.scarab.screens.Default
   org.tigris.scarab.screens.DataExport

All known Subclasses:   org.tigris.scarab.screens.ReportExport,  org.tigris.scarab.screens.IssueListExport,
DataExport
class DataExport extends Default (Code)

Sends file contents directly to the output stream, setting the Content-Type and writing back to the browser a tab-delimited file (Excel digests this fine). We used to use POI to compose an Excel binary data file, but its outrageous memory consumption didn't scale for large result sets. POI assembles the its output in memory. After study of the native OLE2 Excel file format, it appears very difficult to generate the file in another fashion.

Regards output encoding, for now we're assuming the response stream is appropriately set upon fetching. Also, we're assuming that Excel will do the right thing on receipt of our TSV file with Japanese or other multibyte characters (we're not setting an encoding on the Content-Type we return). Both of the above to be verified.


author:
   John McNally
author:
   St.Ack
author:
   Daniel Rall
since:
   Scarab 1.0

Inner Class :protected class TSVPrinter

Field Summary
final protected static  StringNO_CONTENT
     What to show if a cell is empty.


Method Summary
final protected  booleancontainsElements(List l)
    
public  voiddoBuildTemplate(RunData data, TemplateContext context)
     Sets the Content-Type header for the response.
protected  StringescapeCommas(String s)
     Escape any commas in passed string.
Parameters:
  s - String to check.
protected  StringgetEncodingForExport(RunData data)
     This function encapsulates the logic of determining which encoding to use.
protected  WritergetWriter(RunData data)
     This function is available to subclasses -- it is used to provide a Writer based on the current request and the site configuration, taking encoding issues into consideration.

Field Detail
NO_CONTENT
final protected static String NO_CONTENT(Code)
What to show if a cell is empty. The empty string is dealt with best by spreadsheet applications.





Method Detail
containsElements
final protected boolean containsElements(List l)(Code)



doBuildTemplate
public void doBuildTemplate(RunData data, TemplateContext context) throws Exception(Code)
Sets the Content-Type header for the response. Since this assumes we're writing the reponse ourself, indicates no target to render by setting it to null.



escapeCommas
protected String escapeCommas(String s)(Code)
Escape any commas in passed string.
Parameters:
  s - String to check. Passed string with commas escaped.



getEncodingForExport
protected String getEncodingForExport(RunData data)(Code)
This function encapsulates the logic of determining which encoding to use. Right now, the encoding isn't per-request, but that should be changed.



getWriter
protected Writer getWriter(RunData data) throws IOException(Code)
This function is available to subclasses -- it is used to provide a Writer based on the current request and the site configuration, taking encoding issues into consideration.



Methods inherited from org.tigris.scarab.screens.Default
public static boolean checkAuthorized(RunData data) throws Exception(Code)(Java Doc)
public String doBuild(RunData data) throws Exception(Code)(Java Doc)
protected void doBuildTemplate(RunData data, TemplateContext context) throws Exception(Code)(Java Doc)
public static ScarabLocalizationTool getLocalizationTool(TemplateContext context)(Code)(Java Doc)
public static ScarabRequestTool getScarabRequestTool(TemplateContext context)(Code)(Java Doc)
protected String getTitle(ScarabRequestTool scarabR, ScarabLocalizationTool l10n) throws Exception(Code)(Java Doc)
protected boolean isAuthorized(RunData data) throws Exception(Code)(Java Doc)
public static void setTargetLogin(RunData data)(Code)(Java Doc)
public static void setTargetSelectModule(RunData data)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.