Print content of a SWT Table with correct indentation between columns data











up vote
0
down vote

favorite












I want to print in printer the content of a SWT Table with correct indentation between columns data. The table has three columns, each column has it's name.



I have a code example which prints text into printer but it only works with Strings, is not capable of drawing SWT Tables.



I imagine two approaches to do it:



Approach 1: Drawing the table. I don't have any idea about how to do that. This whould be the best approach, but can't find any samples of how to doing this.



Approach 2: Storing the content in a String with indentation and printing it later. This can be tested in Log before sending it to my print method. I want to print it with indentation... I mean that each "column" must be separated between them with the same space. This whould be a sample of the expected result stored in a String:



Name...............Group..............Column3...............    
Pepito Palotes.....Grupo1.............23/12/2018, 24/12/2018
Eustaquio Lopez....Grupo2.............25/12/2018............
Ezequiel Cacatua...Group3.............25/12/2018............


Please, any help with this will be grated, dodes exists a sample for printing tables?



This is the table:



    Table groupsTable = new Table(this, SWT.SINGLE | SWT.BORDER | SWT.FULL_SELECTION);
groupsTable.setLinesVisible(true);
groupsTable.setHeaderVisible(true);
GridData gd_groupsTable = new GridData(SWT.LEFT, SWT.FILL, false, true, 1, 1);
gd_groupsTable.widthHint = 300;
groupsTable.setLayoutData(gd_groupsTable);

TableColumn groupsTableColumnName = new TableColumn(groupsTable, SWT.NONE);
groupsTableColumnName.setWidth(100);
groupsTableColumnName.setText("Nombre");

TableColumn groupsTableColumnJointBetName = new TableColumn(groupsTable, SWT.NONE);
groupsTableColumnJointBetName.setWidth(100);
groupsTableColumnJointBetName.setText("Grupo");

TableColumn groupsTableColumnJointBetDate = new TableColumn(groupsTable, SWT.NONE);
groupsTableColumnJointBetDate.setWidth(80);
groupsTableColumnJointBetDate.setText("Fecha");

populateGroupsTable();









share|improve this question




























    up vote
    0
    down vote

    favorite












    I want to print in printer the content of a SWT Table with correct indentation between columns data. The table has three columns, each column has it's name.



    I have a code example which prints text into printer but it only works with Strings, is not capable of drawing SWT Tables.



    I imagine two approaches to do it:



    Approach 1: Drawing the table. I don't have any idea about how to do that. This whould be the best approach, but can't find any samples of how to doing this.



    Approach 2: Storing the content in a String with indentation and printing it later. This can be tested in Log before sending it to my print method. I want to print it with indentation... I mean that each "column" must be separated between them with the same space. This whould be a sample of the expected result stored in a String:



    Name...............Group..............Column3...............    
    Pepito Palotes.....Grupo1.............23/12/2018, 24/12/2018
    Eustaquio Lopez....Grupo2.............25/12/2018............
    Ezequiel Cacatua...Group3.............25/12/2018............


    Please, any help with this will be grated, dodes exists a sample for printing tables?



    This is the table:



        Table groupsTable = new Table(this, SWT.SINGLE | SWT.BORDER | SWT.FULL_SELECTION);
    groupsTable.setLinesVisible(true);
    groupsTable.setHeaderVisible(true);
    GridData gd_groupsTable = new GridData(SWT.LEFT, SWT.FILL, false, true, 1, 1);
    gd_groupsTable.widthHint = 300;
    groupsTable.setLayoutData(gd_groupsTable);

    TableColumn groupsTableColumnName = new TableColumn(groupsTable, SWT.NONE);
    groupsTableColumnName.setWidth(100);
    groupsTableColumnName.setText("Nombre");

    TableColumn groupsTableColumnJointBetName = new TableColumn(groupsTable, SWT.NONE);
    groupsTableColumnJointBetName.setWidth(100);
    groupsTableColumnJointBetName.setText("Grupo");

    TableColumn groupsTableColumnJointBetDate = new TableColumn(groupsTable, SWT.NONE);
    groupsTableColumnJointBetDate.setWidth(80);
    groupsTableColumnJointBetDate.setText("Fecha");

    populateGroupsTable();









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I want to print in printer the content of a SWT Table with correct indentation between columns data. The table has three columns, each column has it's name.



      I have a code example which prints text into printer but it only works with Strings, is not capable of drawing SWT Tables.



      I imagine two approaches to do it:



      Approach 1: Drawing the table. I don't have any idea about how to do that. This whould be the best approach, but can't find any samples of how to doing this.



      Approach 2: Storing the content in a String with indentation and printing it later. This can be tested in Log before sending it to my print method. I want to print it with indentation... I mean that each "column" must be separated between them with the same space. This whould be a sample of the expected result stored in a String:



      Name...............Group..............Column3...............    
      Pepito Palotes.....Grupo1.............23/12/2018, 24/12/2018
      Eustaquio Lopez....Grupo2.............25/12/2018............
      Ezequiel Cacatua...Group3.............25/12/2018............


      Please, any help with this will be grated, dodes exists a sample for printing tables?



      This is the table:



          Table groupsTable = new Table(this, SWT.SINGLE | SWT.BORDER | SWT.FULL_SELECTION);
      groupsTable.setLinesVisible(true);
      groupsTable.setHeaderVisible(true);
      GridData gd_groupsTable = new GridData(SWT.LEFT, SWT.FILL, false, true, 1, 1);
      gd_groupsTable.widthHint = 300;
      groupsTable.setLayoutData(gd_groupsTable);

      TableColumn groupsTableColumnName = new TableColumn(groupsTable, SWT.NONE);
      groupsTableColumnName.setWidth(100);
      groupsTableColumnName.setText("Nombre");

      TableColumn groupsTableColumnJointBetName = new TableColumn(groupsTable, SWT.NONE);
      groupsTableColumnJointBetName.setWidth(100);
      groupsTableColumnJointBetName.setText("Grupo");

      TableColumn groupsTableColumnJointBetDate = new TableColumn(groupsTable, SWT.NONE);
      groupsTableColumnJointBetDate.setWidth(80);
      groupsTableColumnJointBetDate.setText("Fecha");

      populateGroupsTable();









      share|improve this question















      I want to print in printer the content of a SWT Table with correct indentation between columns data. The table has three columns, each column has it's name.



      I have a code example which prints text into printer but it only works with Strings, is not capable of drawing SWT Tables.



      I imagine two approaches to do it:



      Approach 1: Drawing the table. I don't have any idea about how to do that. This whould be the best approach, but can't find any samples of how to doing this.



      Approach 2: Storing the content in a String with indentation and printing it later. This can be tested in Log before sending it to my print method. I want to print it with indentation... I mean that each "column" must be separated between them with the same space. This whould be a sample of the expected result stored in a String:



      Name...............Group..............Column3...............    
      Pepito Palotes.....Grupo1.............23/12/2018, 24/12/2018
      Eustaquio Lopez....Grupo2.............25/12/2018............
      Ezequiel Cacatua...Group3.............25/12/2018............


      Please, any help with this will be grated, dodes exists a sample for printing tables?



      This is the table:



          Table groupsTable = new Table(this, SWT.SINGLE | SWT.BORDER | SWT.FULL_SELECTION);
      groupsTable.setLinesVisible(true);
      groupsTable.setHeaderVisible(true);
      GridData gd_groupsTable = new GridData(SWT.LEFT, SWT.FILL, false, true, 1, 1);
      gd_groupsTable.widthHint = 300;
      groupsTable.setLayoutData(gd_groupsTable);

      TableColumn groupsTableColumnName = new TableColumn(groupsTable, SWT.NONE);
      groupsTableColumnName.setWidth(100);
      groupsTableColumnName.setText("Nombre");

      TableColumn groupsTableColumnJointBetName = new TableColumn(groupsTable, SWT.NONE);
      groupsTableColumnJointBetName.setWidth(100);
      groupsTableColumnJointBetName.setText("Grupo");

      TableColumn groupsTableColumnJointBetDate = new TableColumn(groupsTable, SWT.NONE);
      groupsTableColumnJointBetDate.setWidth(80);
      groupsTableColumnJointBetDate.setText("Fecha");

      populateGroupsTable();






      java string printing swt tabular






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 20 at 14:18









      Brian Tompsett - 汤莱恩

      4,1631336100




      4,1631336100










      asked Nov 20 at 10:57









      NullPointerException

      12.8k52159278




      12.8k52159278





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391490%2fprint-content-of-a-swt-table-with-correct-indentation-between-columns-data%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391490%2fprint-content-of-a-swt-table-with-correct-indentation-between-columns-data%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'