1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
| package com.ruben.utils.coreUtils;
import cn.hutool.core.date.DateUtil; import com.ruben.utils.FileUtils; import com.ruben.utils.StringKit; import com.ruben.utils.StringUtils; import com.ruben.utils.collection.MapUtil; import com.spire.doc.*; import com.spire.doc.collections.*; import com.spire.doc.documents.*; import com.spire.doc.fields.DocPicture; import com.spire.doc.fields.TextRange; import com.spire.doc.formatting.CharacterFormat; import com.spire.doc.formatting.ParagraphFormat; import lombok.extern.slf4j.Slf4j;
import java.io.*; import java.net.URLEncoder; import java.text.DateFormat; import java.text.ParsePosition; import java.text.SimpleDateFormat; import java.util.*; import java.util.regex.Pattern;
@Slf4j public class WordCoreUtils {
public static final String CHECKED = "■"; public static final String NO_CHECK = "□"; public static final String ENCLOSURE = "☼"; public static final String DATE_TIME_PATTERN_UTC = "yyyy-MM-dd'T'HH:mm:ss.sss'Z'"; private static final ThreadLocal<DateFormat> DATE_FORMAT_THREAD_LOCAL = ThreadLocal.withInitial(() -> new SimpleDateFormat(DATE_TIME_PATTERN_UTC));
public static void check(Document doc, String bookmarkName) { check(doc, bookmarkName, "", true); }
public static void check(Document doc, String bookmarkName, String text, boolean checked) { if (checked) {
text = CHECKED + text; } else { text = NO_CHECK + text; } BookmarksNavigator bookmarkNavigator = new BookmarksNavigator(doc); bookmarkNavigator.moveToBookmark(bookmarkName); Paragraph para = new Paragraph(doc); TextRange textRange = para.appendText(text); CharacterFormat format = textRange.getCharacterFormat(); if (checked) {
format.setFontSize(15); } else { format.setFontSize(9); } TextBodyPart bodyPart = new TextBodyPart(doc); bodyPart.getBodyItems().add(para); try { bookmarkNavigator.replaceBookmarkContent(bodyPart); } catch (Exception e) { log.error("书签《" + bookmarkName + "》丢失", e); } }
public static void check(Document doc, Set<String> set) { set.forEach(s -> check(doc, s)); }
public static void check(boolean condition, Document doc, String bookmarkName) { if (!condition) { return; } check(doc, bookmarkName); }
public static void fillText(Document doc, String bookmarkName, String content) { fillText(doc, bookmarkName, content, Boolean.TRUE); }
public static void fillText(boolean condition, Document doc, String bookmarkName, String content) { if (!condition) { return; } fillText(doc, bookmarkName, content); }
public static final Pattern HTML_PATTERN = Pattern.compile("<.+?>");
public static void copyTable(Table table, int start, int rows) { int end = start + rows; for (int j = start; j < end; j++) { TableRow row = table.getRows().get(j).deepClone(); table.getRows().insert(j + rows, row); } }
public static void deepClone(boolean needCopy, TableRow tableRow) { if (!needCopy) { return; } tableRow = tableRow.deepClone(); }
public static void insertRow(boolean needCopy, Table table, int start, int rows, TableRow tableRow) { if (!needCopy) { return; } table.getRows().insert(start + rows, tableRow); }
public static void fillTableCell(boolean needCopy, TableCell tableCell, String value) { if (!needCopy) { for (int i = 0; i < tableCell.getParagraphs().getCount(); i++) { tableCell.getParagraphs().removeAt(i); } } tableCell.addParagraph().appendText(value); }
public static void appendCheck(boolean checked, Paragraph para) { if (checked) { TextRange textRange = para.appendText("\uF052"); CharacterFormat format = textRange.getCharacterFormat(); format.setFontName("Wingdings 2"); format.setFontSize(9); } else { para.appendText(NO_CHECK); } }
public static Document mergeBigTable(Document... documents) { return mergeAddSectionTable(null, documents); }
public static void fillOnlyText(Document doc, String bookmarkName, String v) { fillText(doc, bookmarkName, v, Boolean.FALSE); }
public static void fillOnlyText(boolean condition, Document doc, String bookmarkName, String v) { if (!condition) { return; } fillText(doc, bookmarkName, v, Boolean.FALSE); }
public static void fillDate(Document doc, Date date, String yearBookmark, String monthBookmark, String dayBookmark) { if (Objects.isNull(date)) { return; } Calendar calendar = Calendar.getInstance(); calendar.setTime(date); WordCoreUtils.fillOnlyText(doc, yearBookmark, String.valueOf(calendar.get(Calendar.YEAR))); WordCoreUtils.fillOnlyText(doc, monthBookmark, String.valueOf(calendar.get(Calendar.MONTH) + 1)); WordCoreUtils.fillOnlyText(doc, dayBookmark, String.valueOf(calendar.get(Calendar.DATE))); }
public static void checkBox(Document doc, Map<String, String> map, String value) { map.forEach((k, v) -> check(value.contains(v), doc, k)); }
public static void fillOnlyText(Document doc, Map<String, String> normalMap) { if (MapUtil.isEmpty(normalMap)) { return; } normalMap.forEach((k, v) -> fillOnlyText(StringKit.isNotBlank(v), doc, k, v)); }
public static void fillText(Document doc, Map<String, String> underLineMap) { if (MapUtil.isEmpty(underLineMap)) { return; } underLineMap.forEach((k, v) -> fillText(StringKit.isNotBlank(v), doc, k, v)); }
public static Document mergeAutoFitTable(AutoFitBehaviorType autoFit, Document... documents) { Document result = new Document(); Section section = Optional.ofNullable(result.getLastSection()).orElse(result.addSection()); TableCollection tableCollection = section.getTables(); int count = tableCollection.getCount(); Table table = count > 0 ? tableCollection.get(count - 1) : section.addTable(true); for (int i = 0; i < documents.length; i++) { SectionCollection sections = documents[i].getSections(); TableCollection tables = sections.get(0).getTables(); RowCollection rows = tables.get(0).getRows(); for (int j = 0; j < rows.getCount(); j++) { table.getRows().add(rows.get(j).deepClone()); } if (Objects.nonNull(autoFit)) { table.autoFit(autoFit); } } return result; }
public static Document mergeSectionsTable(AutoFitBehaviorType autoFit, Document... documents) { Document result = new Document(); for (Document document : documents) { Section section = Optional.ofNullable(result.getLastSection()).orElse(result.addSection()); Table table = section.getTables().getCount() == 0 ? section.addTable(true) : section.getTables().get(section.getTables().getCount() - 1); SectionCollection sections = document.getSections(); for (int k = 0; k < sections.getCount(); k++) { TableCollection tables = sections.get(k).getTables(); Table currentTable = tables.get(0); RowCollection rows = currentTable.getRows(); for (int j = 0; j < rows.getCount(); j++) { TableRow row = rows.get(j).deepClone(); onePageShow(row); table.getRows().add(row); } } if (Objects.nonNull(autoFit)) { table.autoFit(autoFit); } } return result; }
private static void onePageShow(TableRow row) { CellCollection cells = row.getCells(); for (int i = 0; i < cells.getCount(); i++) { ParagraphCollection paragraphs = cells.get(i).getParagraphs(); for (int l = 0; l < paragraphs.getCount(); l++) { ParagraphFormat format = paragraphs.get(l).getFormat(); format.setKeepFollow(true); } } }
public static Document mergeSectionsTable(Document... documents) { return mergeSectionsTable(AutoFitBehaviorType.Auto_Fit_To_Window, documents); }
public static void fillTexts(Document doc, String bookmarkName, String value, int lines) { if (StringKit.isEmpty(value)) { return; } StringBuilder valueBuilder = new StringBuilder(" " + value); while (valueBuilder.length() < 47) { valueBuilder.append(" "); } while (valueBuilder.length() < 86 * lines) { valueBuilder.append("\n "); } value = valueBuilder.toString(); fillText(doc, bookmarkName, value); }
public static void fillTextOneLine(Document doc, Map<String, String> underlineMap) { if (underlineMap.isEmpty()) { return; } underlineMap.forEach((bookmarkName, value) -> { StringBuilder valueBuilder = new StringBuilder(" " + value); while (valueBuilder.length() < 53) { valueBuilder.append(" "); } value = valueBuilder.toString(); fillText(doc, bookmarkName, value); }); }
public static Document concatWord(Document... documents) { Document result = new Document(); for (Document document : documents) { Section addSection = result.addSection(); for (Section section : (Iterable<Section>) document.getSections()) { for (DocumentObject obj : (Iterable<DocumentObject>) section.getBody().getChildObjects()) { addSection.getBody().getChildObjects().add(obj.deepClone()); } } } return result; }
public static void picture(Document doc, String bookmarkName, String filePath) { if (StringKit.isBlank(filePath)) { return; } try { filePath = filePath.replace("程序附件", URLEncoder.encode("程序附件", "utf-8")); BookmarksNavigator bookmarksNavigator1 = new BookmarksNavigator(doc); bookmarksNavigator1.moveToBookmark(bookmarkName, true, false); Paragraph para = new Paragraph(doc); byte[] bytes = FileUtils.loadPicture(filePath); if (Objects.isNull(bytes)) { log.error("图片无法加载"); return; } DocPicture picture = para.appendPicture(bytes); picture.setWidth(100f); picture.setHeight(100f); picture.setDistanceLeft(50f); try { bookmarksNavigator1.insertParagraph(para); } catch (NullPointerException e) { log.error("书签《" + bookmarkName + "》丢失", e); } para.getFormat().setHorizontalAlignment(HorizontalAlignment.Center); } catch (Exception e) { log.error("错误", e); } }
public static void setTableAutoFit(AutoFitBehaviorType autoFitType, Document doc) { SectionCollection sections = doc.getSections(); for (int i = 0; i < sections.getCount(); i++) { TableCollection tables = sections.get(i).getTables(); for (int j = 0; j < tables.getCount(); j++) { tables.get(j).autoFit(autoFitType); } } }
public static void setTableIsBreakAcrossPages(boolean isBreakAcrossPages, Document doc) { SectionCollection sections = doc.getSections(); for (int i = 0; i < sections.getCount(); i++) { TableCollection tables = sections.get(i).getTables(); for (int j = 0; j < tables.getCount(); j++) { tables.get(j).getTableFormat().isBreakAcrossPages(isBreakAcrossPages); } } }
public static void applyVerticalMerge(Document doc, int cells, int startRows, int endRows) { SectionCollection sections = doc.getSections(); for (int i = 0; i < sections.getCount(); i++) { TableCollection tables = sections.get(i).getTables(); for (int j = 0; j < tables.getCount(); j++) { tables.get(j).applyVerticalMerge(cells, startRows, endRows); } } }
public static void fillEnclosure(boolean condition, Document doc, String bookmarkName) { if (!condition) { return; } fillEnclosure(doc, bookmarkName); }
public static void fillEnclosure(String file, Document doc, String bookmarkName, String enclosureMark) { if (StringKit.isBlank(file)) { return; } BookmarksNavigator bookmarkNavigator = new BookmarksNavigator(doc); bookmarkNavigator.moveToBookmark(bookmarkName); Paragraph para = new Paragraph(doc); TextRange textRange = para.appendText(enclosureMark); CharacterFormat format = textRange.getCharacterFormat(); format.setFontName("Segoe UI Symbol"); format.setFontSize(9); TextBodyPart bodyPart = new TextBodyPart(doc); bodyPart.getBodyItems().add(para); try { bookmarkNavigator.replaceBookmarkContent(bodyPart); } catch (Exception e) { log.error("书签《" + bookmarkName + "》丢失", e); } }
public static void fillEnclosure(String file, Document doc, String bookmarkName) { if (StringKit.isEmpty(file)) { return; } fillEnclosure(doc, bookmarkName); }
public static void fillEnclosure(Document doc, String bookmarkName) { fillEnclosure(WordCoreUtils.CHECKED, doc, bookmarkName, WordCoreUtils.ENCLOSURE); }
public static void fillReplaceHtml(Document doc, String bookmarkName, String data) { BookmarksNavigator bookmarkNavigator = new BookmarksNavigator(doc); bookmarkNavigator.moveToBookmark(bookmarkName); Paragraph para = new Paragraph(doc); TextRange textRange = para.appendText(StringUtils.replaceHtml(data)); CharacterFormat format = textRange.getCharacterFormat(); format.setFontSize(9); TextBodyPart bodyPart = new TextBodyPart(doc); bodyPart.getBodyItems().add(para); try { bookmarkNavigator.replaceBookmarkContent(bodyPart); } catch (Exception e) { log.error("书签《" + bookmarkName + "》丢失", e); } }
public static void fillText(Document doc, String bookmarkName, String content, boolean underline) { if (StringKit.isBlank(content)) { return; } BookmarksNavigator bookmarkNavigator = new BookmarksNavigator(doc); bookmarkNavigator.moveToBookmark(bookmarkName); Paragraph para = new Paragraph(doc); TextRange textRange = para.appendText(StringUtils.replaceHtml(content)); CharacterFormat format = textRange.getCharacterFormat(); if (underline) {
} format.setFontSize(9); format.setFontName("宋体"); TextBodyPart bodyPart = new TextBodyPart(doc); bodyPart.getBodyItems().add(para); try { bookmarkNavigator.replaceBookmarkContent(bodyPart); } catch (NullPointerException e) { log.error("书签《" + bookmarkName + "》丢失", e); } }
public static void fillHtml(Document doc, String bookmarkName, String htmlStr) { if (StringKit.isBlank(htmlStr)) { return; } htmlStr = htmlStr.replaceAll("<[/]*p[ ]*>\\\\+[A-Za-z]", "</br>") .replaceAll("\t", "") .replaceAll("\n", "") .replaceAll(" ", " ") .replaceAll("<[/]*p[ ]*>", ""); if (!HTML_PATTERN.matcher(htmlStr).matches()) { fillOnlyText(doc, bookmarkName, htmlStr); return; } BookmarksNavigator bookmarksNavigator = new BookmarksNavigator(doc); bookmarksNavigator.moveToBookmark(bookmarkName, true, false); Paragraph para = doc.addSection().addParagraph(); para.appendHTML("<span style=\\\"font-family:'宋体'\\\">" + htmlStr + "</span>"); try { bookmarksNavigator.insertParagraph(para); } catch (NullPointerException e) { log.error("书签《" + bookmarkName + "》丢失", e); } }
private static void fillLocalImage(byte[] bytes, Document doc, String bookmarkName, float width, float height) { if (Objects.isNull(bytes)) { return; } BookmarksNavigator bookmarksNavigator = new BookmarksNavigator(doc); bookmarksNavigator.moveToBookmark(bookmarkName, true, false); Paragraph para = new Paragraph(doc); DocPicture picture = para.appendPicture(bytes); if (picture.getHeightScale() > width) { picture.setWidth(width); } if (picture.getHeightScale() > height) { picture.setHeight(height); }
try { bookmarksNavigator.insertParagraph(para); } catch (NullPointerException e) { log.error("书签《" + bookmarkName + "》丢失", e); } }
private static byte[] loadLocalImgToByteArray(String picturePath) { InputStream dataInputStream = null; ByteArrayOutputStream output = null; byte[] result = new byte[0]; try { dataInputStream = new FileInputStream(picturePath); output = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int length; while ((length = dataInputStream.read(buffer)) > 0) { output.write(buffer, 0, length); } result = output.toByteArray(); } catch (Exception e) { e.printStackTrace(); } finally { try { if (dataInputStream != null) { dataInputStream.close(); } if (output != null) { output.close(); } } catch (IOException e) { e.printStackTrace(); } } File file = new File(picturePath); if (file.exists()) { file.delete(); } return result; }
public static void fillDateStr(Document doc, String bookmarkName, String time) { if (StringKit.isEmpty(time)) { return; } String chineseDate; try { chineseDate = DateUtil.formatChineseDate(DateUtil.parse(time).toJdkDate(), false); } catch (Exception e) { chineseDate = DateUtil.formatChineseDate(DATE_FORMAT_THREAD_LOCAL.get().parse(time, new ParsePosition(0)), false); } fillOnlyText(doc, bookmarkName, chineseDate); }
public static Document mergeAddSectionTable(AutoFitBehaviorType autoFit, Document... documents) { Document result = new Document(); for (int i = 0; i < documents.length; i++) { Section section = Optional.ofNullable(result.getLastSection()).orElse(result.addSection()); section.setBreakCode(SectionBreakType.No_Break); Table table = section.addTable(true); SectionCollection sections = documents[i].getSections(); Section section1 = sections.getCount() == 0 ? documents[i].addSection() : sections.get(0); TableCollection tables = section1.getTables(); RowCollection rows = (tables.getCount() == 0 ? section1.addTable() : tables.get(0)).getRows(); for (int j = 0; j < rows.getCount(); j++) { TableRow row = rows.get(j).deepClone(); onePageShow(row); table.getRows().add(row); } if (Objects.nonNull(autoFit)) { table.autoFit(autoFit); } } return result; }
public static void printTable(Document document) { SectionCollection sections = document.getSections(); for (int i = 0; i < sections.getCount(); i++) { System.out.print("section:" + i + " "); TableCollection tables = sections.get(i).getTables(); for (int j = 0; j < tables.getCount(); j++) { System.out.print("table:" + j + " "); RowCollection rows = tables.get(j).getRows(); for (int k = 0; k < rows.getCount(); k++) { System.out.print("row:" + k + " "); CellCollection cells = rows.get(k).getCells(); for (int l = 0; l < cells.getCount(); l++) { System.out.print("cell:" + l + " "); TableCell tableCell = cells.get(l); ParagraphCollection paras = tableCell.getParagraphs(); for (int m = 0; m < paras.getCount(); m++) { System.out.print("para:" + m + " "); System.out.print(paras.get(m).getText() + " "); } System.out.print("\t"); } System.out.println(); } } } }
public static void fillHalfDownText(boolean needDown, Document doc, String bookmarkName, String content) { if (StringKit.isBlank(content)) { return; } BookmarksNavigator bookmarkNavigator = new BookmarksNavigator(doc); bookmarkNavigator.moveToBookmark(bookmarkName); Paragraph para = new Paragraph(doc); TextRange textRange = para.appendText(needDown ? ("\n" + content) : StringUtils.replaceHtml(content)); CharacterFormat format = textRange.getCharacterFormat(); format.setFontName("Segoe UI Symbol"); format.setFontSize(9); TextBodyPart bodyPart = new TextBodyPart(doc); bodyPart.getBodyItems().add(para); try { bookmarkNavigator.replaceBookmarkContent(bodyPart); } catch (NullPointerException e) { log.error("书签《" + bookmarkName + "》丢失", e); } }
public static void onePageShow(Document document) { SectionCollection sections = document.getSections(); for (int i = 0; i < sections.getCount(); i++) { TableCollection tables = sections.get(i).getTables(); for (int j = 0; j < tables.getCount(); j++) { Table table = tables.get(j); table.getTableFormat().isBreakAcrossPages(true); RowCollection rows = table.getRows(); for (int k = 0; k < rows.getCount(); k++) { TableRow row = rows.get(k); onePageShow(row); } } } }
public static void everyPageSNNumber(Document doc, String snNumber) { HeaderFooter header = doc.getSections().get(0).getHeadersFooters().getHeader(); Paragraph paragraph = header.addParagraph(); paragraph.appendText(" SN:" + Optional.ofNullable(snNumber).orElseGet(String::new)); paragraph.getFormat().setHorizontalAlignment(HorizontalAlignment.Left); } }
|