Skip to content

SEO-172101-Links-With-Redirects-Java-File-Formats #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: hotfix/hotfix-v21.2.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions java-file-formats/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ Essential File Formats for Java includes a Java class library to create, edit, w

## Additional help resources

The [Knowledge Base](https://www.syncfusion.com/kb/) section contains responses for common questions asked by the customers. This would be a good place to search for the topics that are not covered in the User Guide.
The [Knowledge Base](https://support.syncfusion.com/kb) section contains responses for common questions asked by the customers. This would be a good place to search for the topics that are not covered in the User Guide.

Similar to the Knowledge Base, the [Forum](https://www.syncfusion.com/forums/) section also contains responses to the questions that are asked by other customers.

## Create a support incident

If you are unable to find the information you are looking for in the self-help resources mentioned above, please contact us by creating a [support ticket](https://www.syncfusion.com/support/directtrac/incidents).
If you are unable to find the information you are looking for in the self-help resources mentioned above, please contact us by creating a [support ticket](https://www.syncfusion.com/Account/Login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents).

## List of File Format libraries:

Expand All @@ -48,5 +48,4 @@ Java class library used to create, read, edit, and convert Microsoft Word files
</table>

## Quick Start links:

[Create Word file in Java without Microsoft Office](https://help.syncfusion.com/java-file-formats/word-library/getting-started)
10 changes: 5 additions & 5 deletions java-file-formats/word-library/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ document.close();

The resultant Word document looks as follows.

![Creating a new Word document from scratch with basic elements](GettingStarted_images/GettingStarted_img1.png)
![Creating a new Word document from scratch with basic elements](GettingStarted_images/java-file-formats-word-library-new-document.png)


## Performing Mail merge
Expand All @@ -281,7 +281,7 @@ Follow the given steps to perform a simple Mail merge in a Word document.

Let’s consider that you have a template Word document with the merge fields as shown.

![Performing Mail merge input document](GettingStarted_images/GettingStarted_img2.png)
![Performing Mail merge input document](GettingStarted_images/java-file-formats-word-library-mail-merge-input.png)

The `MailMerge` class provides various overloads for the `execute` method to perform a Mail merge from the various data source. The Mail merge operation replaces the matching merge fields with the respective data.

Expand All @@ -307,7 +307,7 @@ document.close();

The resultant Word document looks as follows.

![Performing Mail merge output document](GettingStarted_images/GettingStarted_img3.png)
![Performing Mail merge output document](GettingStarted_images/java-file-formats-word-library-mail-merge-output.png)

### Simple Mail merge with Group

Expand All @@ -320,7 +320,7 @@ The region between these two merge fields gets repeated for every record from th

For example – let’s consider that you have a template document as shown.

![Simple Mail merge with Group input document](GettingStarted_images/GettingStarted_img4.png)
![Simple Mail merge with Group input document](GettingStarted_images/java-file-formats-word-library-mail-merge-with-group-input.png)

Here in this template, the employees are the group name and the exact same name should be used while performing the Mail merge through code. There are two special merge fields “TableStart:Employees” and “TableEnd:Employees” to denote the start and end of the Mail merge group.

Expand Down Expand Up @@ -516,4 +516,4 @@ public class Employee

The resultant document looks as follows.

![Simple Mail merge with Group output document](GettingStarted_images/GettingStarted_img5.png)
![Simple Mail merge with Group output document](GettingStarted_images/java-file-formats-word-library-mail-merge-with-group-output.png)