Android Code for Merging TSV Files into HTML: A Complete Guide
// Merge TSV to HTML
LightCellsApi api = new LightCellsApi(System.getenv("CellsCloudTestClientId"),System.getenv("CellsCloudTestClientSecret"),"v3.0",System.getenv("CellsCloudTestApiBaseUrl"));
String remoteFolder = "TestData/";
String localName = "Book1.xlsx";
String remoteName = "Book1.xlsx";
String AssemblyTestXlsx = "assemblytest.xlsx";
String DataSourceXlsx = "datasource.xlsx";
HashMap<String,File> fileMap = new HashMap<String,File>();
fileMap.put(AssemblyTestXlsx , new File("D:\\TestData\\" + AssemblyTestXlsx));
fileMap.put(DataSourceXlsx , new File("D:\\TestData\\" + DataSourceXlsx) );
PostMergeRequest request = new PostMergeRequest();
request.setFile(fileMap);
request.setFormat("png");
request.setMergeToOneSheet(false);
request.setPassword("");
request.setCheckExcelRestriction(false);
FileInfo response = api.postMerge(request);
%!(EXTRA string=TSV, string=HTML)
// Merge HTML to HTML
ApiClient apiClient = new ApiClient(/*clientId*/ "####-####-####-####-####", /*clientSecret*/ "##################", null);
WordsApi wordsApi = new WordsApi(apiClient);
String localFile = "Sample.docx";
byte[] requestDocument = Files.readAllBytes(Paths.get(localFile).toAbsolutePath());
byte[] requestDocumentListDocumentEntries0FileReferenceStream = Files.readAllBytes(Paths.get(TestInitializer.LocalTestFolder, localFile).toAbsolutePath());
FileReference requestDocumentListDocumentEntries0FileReference = new FileReference(requestDocumentListDocumentEntries0FileReferenceStream);
DocumentEntry requestDocumentListDocumentEntries0 = new DocumentEntry();
requestDocumentListDocumentEntries0.setFileReference(requestDocumentListDocumentEntries0FileReference);
requestDocumentListDocumentEntries0.setImportFormatMode("KeepSourceFormatting");
ArrayList<DocumentEntry> requestDocumentListDocumentEntries = new ArrayList<DocumentEntry>();
requestDocumentListDocumentEntries.add(requestDocumentListDocumentEntries0);
DocumentEntryList requestDocumentList = new DocumentEntryList();
requestDocumentList.setDocumentEntries(requestDocumentListDocumentEntries);
AppendDocumentOnlineRequest appendRequest = new AppendDocumentOnlineRequest(requestDocument, requestDocumentList, null, null, null, null, null, null);
wordsApi.appendDocumentOnline(appendRequest);
%!(EXTRA string=HTML, string=HTML)
How to Merge TSV to HTML in Cloud Apps
- Initialize WordsApi with Client Id, Client Secret, Base URL & API version
- Set requestDocument assign the local TSV file name
- Set requestDocumentListDocumentEntriesFileReference and assign local HTML file name
- Set requestDocumentListDocumentEntries and set file_reference, import_format_mode parameters
- Create DocumentEntryList instance and assing requestDocumentListDocumentEntries to document_entries parameter
- Call AppendDocumentOnlineRequest to merge TSV file with HTML document requestDocument and requestDocumentList
- Call WordsApi appendDocumentOnline with parameters
Get Started with Aspose.Total REST APIs
- Create an account at Dashboard to get free API quota & authorization details
- Get Aspose.Words and Aspose.Cells Cloud SDKs for Android source code from Aspose.Words GitHub and Aspose.Cells GitHub repos to compile/use the SDK yourself or head to the Releases for alternative download options.
- Also have a look at Swagger-based API Reference for Aspose.Words and Aspose.Cells to know more about the REST API.
How to Combine Excel and TSV with Other Formats Online
Boost your document management efficiency by merging TSV files with other formats using the robust Aspose.Cells API. Seamlessly integrate your merged documents with other Aspose.Total APIs such as Aspose.Words, Aspose.PDF, Aspose.Email, Aspose.Slides, Aspose.Diagram, Aspose.Tasks, Aspose.3D, Aspose.HTML. This all-in-one solution allows you to combine files into a single document across various formats.
For a full list of supported formats and merging features, visit the Aspose.Total Cloud page.
FAQ
- Where can I see the release notes for Aspose.Total Cloud API?Complete release notes can be reviewed at Aspose.Total Cloud Documentation.
- Is it safe to merge TSV to HTML in the Cloud?Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
- How can I get started with Aspose.Total REST APIs?Quickstart not only guides through the initialization of Aspose.Total Cloud API, it also helps in installing the required libraries.
- What is HTML Format?Known as language of the web, HTML has evolved with requirements of new information requirements to be displayed as part of web pages. The latest variant is known as HTML 5 that gives a lot of flexibility for working with the language. HTML pages are either received from server, where these are hosted, or can be loaded from local system as well. Each HTML page is made up of HTML elements such as forms, text, images, animations, links, etc. These elements are represented by tags and several others where each tag has start and end. It can also embed applications written in scripting languages such as JavaScript and Style Sheets (CSS) for overall layout representation.
- What file formats are supported by Aspose.Total Cloud API?Aspose.Total Cloud can merge file formats from any product family to any other product family to PDF, DOCX, XPS, image(TIFF, JPEG, PNG BMP), MD and more. Checkout the complete list of supported file formats.
- What is TSV Format?A Tab-Separated Values (TSV) file format represents data separated with tabs in plain text format. The file format, similar to CSV, is used for organization of data in a structured manner in order to import and export between different applications. The format is primarily used for data import/export and exchange in Spreadsheet applications and databases. Each record in a TSV file is contained in a single line of text file where each field value is separated by a tab character. Media type for TSV file format is text/tab-separated-values.
- I can not find the SDK for my favorite language. What should I do?Aspose.Total Cloud is also available as a Docker Container. Try using it with cURL in case your required SDK is not available yet.