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
|
/*
* @(#)BinaryPListParser.java 1.0 2005-11-06
*
* Copyright (c) 2005 Werner Randelshofer
* Staldenmattweg 2, Immensee, CH-6405, Switzerland.
* All rights reserved.
*
* This software is the confidential and proprietary information of
* Werner Randelshofer. ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Werner Randelshofer.
*/
package com.jidesoft.plaf.aqua;
import com.jidesoft.utils.Base64;
import com.jidesoft.utils.SecurityUtils;
import java.io.*;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
/**
* Reads a binary PList file and returns it as a NanoXML XMLElement.
* <p/>
* The NanoXML XMLElement returned by this reader is equivalent to the
* XMLElement returned, if a PList file in XML format is parsed with
* NanoXML.
* <p/>
* Description about property list taken from <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/index.html#//apple_ref/doc/uid/10000048i">
* Apple's online documentation</a>:
* <p/>
* "A property list is a data representation used by Mac OS X Cocoa and Core
* Foundation as a convenient way to store, organize, and access standard object
* types. Frequently called a plist a property list is an object of one of
* several certain Cocoa or Core Foundation types, including arrays,
* dictionaries, strings, binary data, numbers, dates, and Boolean values. If
* the object is a container (an array or dictionary), all objects contained
* within it must also be supported property list objects. (Arrays and
* dictionaries can contain objects not supported by the architecture, but are
* then not property lists, and cannot be saved and restored with the various
* property list methods.)"
* <p/>
* XXX - This implementation can not read date values. Date values will always
* have the current date.
*
* @author Werner Randelshofer
* @version 0.1 June 18, 2005 Created.
* @see XMLElement
*/
class BinaryPListParser {
/* Description of the binary plist format derived from
* http://cvs.opendarwin.org/cgi-bin/cvsweb.cgi/~checkout~/src/CoreFoundation/Parsing.subproj/CFBinaryPList.c?rev=1.1.1.3&content-type=text/plain
*
* EBNF description of the file format:
* <pre>
* bplist ::= header objectTable offsetTable trailer
*
* header ::= magicNumber fileFormatVersion
* magicNumber ::= "bplist"
* fileFormatVersion ::= "00"
*
* objectTable ::= { null | bool | fill | number | date | data |
* string | uid | array | dict }
*
* null ::= 0b0000 0b0000
*
* bool ::= false | true
* false ::= 0b0000 0b1000
* true ::= 0b0000 0b1001
*
* fill ::= 0b0000 0b1111 // fill byte
*
* number ::= int | real
* int ::= 0b0001 0bnnnn byte*(2^nnnn) // 2^nnnn big-endian bytes
* real ::= 0b0010 0bnnnn byte*(2^nnnn) // 2^nnnn big-endian bytes
*
* date ::= 0b0011 0b0011 byte*8 // 8 byte float big-endian bytes
*
* data ::= 0b0100 0bnnnn [int] byte* // nnnn is number of bytes
* // unless 0b1111 then a int
* // variable-sized object follows
* // to indicate the number of bytes
*
* string ::= asciiString | unicodeString
* asciiString ::= 0b0101 0bnnnn [int] byte*
* unicodeString ::= 0b0110 0bnnnn [int] short*
* // nnnn is number of bytes
* // unless 0b1111 then a int
* // variable-sized object follows
* // to indicate the number of bytes
*
* uid ::= 0b1000 0bnnnn byte* // nnnn+1 is # of bytes
*
* array ::= 0b1010 0bnnnn [int] objref* //
* // nnnn is number of objref
* // unless 0b1111 then a int
* // variable-sized object follows
* // to indicate the number of objref
*
* dict ::= 0b1010 0bnnnn [int] keyref* objref*
* // nnnn is number of keyref and
* // objref pairs
* // unless 0b1111 then a int
* // variable-sized object follows
* // to indicate the number of pairs
*
* objref = byte | short // if refCount
* // is less than 256 then objref is
* // an unsigned byte, otherwise it
* // is an unsigned big-endian short
*
* keyref = byte | short // if refCount
* // is less than 256 then objref is
* // an unsigned byte, otherwise it
* // is an unsigned big-endian short
*
* unused ::= 0b0111 0bxxxx | 0b1001 0bxxxx |
* 0b1011 0bxxxx | 0b1100 0bxxxx |
* 0b1110 0bxxxx | 0b1111 0bxxxx
*
*
* offsetTable ::= { int } // list of ints, byte size of which
* // is given in trailer
* // these are the byte offsets into
* // the file
* // number of these is in the trailer
*
* trailer ::= refCount offsetCount objectCount topLevelOffset
*
* refCount ::= byte*8 // unsigned big-endian long
* offsetCount ::= byte*8 // unsigned big-endian long
* objectCount ::= byte*8 // unsigned big-endian long
* topLevelOffset ::= byte*8 // unsigned big-endian long
* </pre>
*/
/**
* Total count of objrefs and keyrefs.
*/
private int refCount;
/**
* Total count of ofsets.
*/
private int offsetCount;
/**
* Total count of objects.
*/
private int objectCount;
/**
* Offset in file of top level offset in offset table.
*/
private int topLevelOffset;
/**
* Object table.
* We gradually fill in objects from the binary PList object table into
* this list.
*/
private ArrayList objectTable;
/**
* Holder for a binary PList array element.
*/
private static class BPLArray {
ArrayList objectTable;
int[] objref;
public Object getValue(int i) {
return objectTable.get(objref[i]);
}
@Override
public String toString() {
StringBuffer buf = new StringBuffer("Array{");
for (int i = 0; i < objref.length; i++) {
if (i > 0) {
buf.append(',');
}
if (objectTable.size() > objref[i]
&& objectTable.get(objref[i]) != this) {
buf.append(objectTable.get(objref[i]));
}
else {
buf.append("*" + objref[i]);
}
}
buf.append('}');
return buf.toString();
}
}
/**
* Holder for a binary PList dict element.
*/
private static class BPLDict {
ArrayList objectTable;
int[] keyref;
int[] objref;
public String getKey(int i) {
return objectTable.get(keyref[i]).toString();
}
public Object getValue(int i) {
return objectTable.get(objref[i]);
}
@Override
public String toString() {
StringBuffer buf = new StringBuffer("BPLDict{");
for (int i = 0; i < keyref.length; i++) {
if (i > 0) {
buf.append(',');
}
if (keyref[i] < 0 || keyref[i] >= objectTable.size()) {
buf.append("#" + keyref[i]);
}
else if (objectTable.get(keyref[i]) == this) {
buf.append("*" + keyref[i]);
}
else {
buf.append(objectTable.get(keyref[i]));
//buf.append(keyref[i]);
}
buf.append(":");
if (objref[i] < 0 || objref[i] >= objectTable.size()) {
buf.append("#" + objref[i]);
}
else if (objectTable.get(objref[i]) == this) {
buf.append("*" + objref[i]);
}
else {
buf.append(objectTable.get(objref[i]));
//buf.append(objref[i]);
}
}
buf.append('}');
return buf.toString();
}
}
/**
* Creates a new instance.
*/
public BinaryPListParser() {
}
/**
* Parses a binary PList file and turns it into a XMLElement.
* The XMLElement is equivalent with a XML PList file parsed using
* NanoXML.
*
* @param file A file containing a binary PList.
* @return Returns the parsed XMLElement.
*/
public XMLElement parse(File file) throws IOException {
RandomAccessFile raf = null;
byte[] buf = null;
try {
raf = new RandomAccessFile(file, "r");
// Parse the HEADER
// ----------------
// magic number ("bplist")
// file format version ("00")
int bpli = raf.readInt();
int st00 = raf.readInt();
if (bpli != 0x62706c69 || st00 != 0x73743030) {
throw new IOException("parseHeader: File does not start with 'bplist00' magic.");
}
// Parse the TRAILER
// ----------------
// byte size of offset ints in offset table
// byte size of object refs in arrays and dicts
// number of offsets in offset table (also is number of objects)
// element # in offset table which is top level object
raf.seek(raf.length() - 32);
// count of offset ints in offset table
offsetCount = (int) raf.readLong();
// count of object refs in arrays and dicts
refCount = (int) raf.readLong();
// count of offsets in offset table (also is number of objects)
objectCount = (int) raf.readLong();
// element # in offset table which is top level object
topLevelOffset = (int) raf.readLong();
buf = new byte[topLevelOffset - 8];
raf.seek(8);
raf.readFully(buf);
}
finally {
if (raf != null) {
raf.close();
}
}
// Parse the OBJECT TABLE
// ----------------------
objectTable = new ArrayList();
DataInputStream in = null;
try {
in = new DataInputStream(
new ByteArrayInputStream(buf)
);
parseObjectTable(in);
}
finally {
if (in != null) {
in.close();
}
}
// Convert the object table to XML and return it
XMLElement root = new XMLElement(new HashMap(), false, false);
root.setName("plist");
root.setAttribute("version", "1.0");
convertObjectTableToXML(root, objectTable.get(0));
return root;
}
/**
* Converts the object table in the binary PList into an XMLElement.
*/
private void convertObjectTableToXML(XMLElement parent, Object object) {
XMLElement elem = parent.createAnotherElement();
if (object instanceof BPLDict) {
BPLDict dict = (BPLDict) object;
elem.setName("dict");
for (int i = 0; i < dict.keyref.length; i++) {
XMLElement key = parent.createAnotherElement();
key.setName("key");
key.setContent(dict.getKey(i));
elem.addChild(key);
convertObjectTableToXML(elem, dict.getValue(i));
}
}
else if (object instanceof BPLArray) {
BPLArray arr = (BPLArray) object;
elem.setName("array");
for (int i = 0; i < arr.objref.length; i++) {
convertObjectTableToXML(elem, arr.getValue(i));
}
}
else if (object instanceof String) {
elem.setName("string");
elem.setContent((String) object);
}
else if (object instanceof Integer) {
elem.setName("integer");
elem.setContent(object.toString());
}
else if (object instanceof Long) {
elem.setName("integer");
elem.setContent(object.toString());
}
else if (object instanceof Float) {
elem.setName("real");
elem.setContent(object.toString());
}
else if (object instanceof Double) {
elem.setName("real");
elem.setContent(object.toString());
}
else if (object instanceof Boolean) {
elem.setName("boolean");
elem.setContent(object.toString());
}
else if (object instanceof byte[]) {
elem.setName("data");
elem.setContent(Base64.encodeBytes((byte[]) object));
}
else if (object instanceof Date) {
elem.setName("date");
DateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
elem.setContent(format.format((Date) object));
}
else {
elem.setName("unsupported");
elem.setContent(object.toString());
}
parent.addChild(elem);
}
/**
* Object Formats (marker byte followed by additional info in some cases)
* null 0000 0000
* bool 0000 1000 // false
* bool 0000 1001 // true
* fill 0000 1111 // fill byte
* int 0001 nnnn ... // # of bytes is 2^nnnn, big-endian bytes
* real 0010 nnnn ... // # of bytes is 2^nnnn, big-endian bytes
* date 0011 0011 ... // 8 byte float follows, big-endian bytes
* data 0100 nnnn [int] ... // nnnn is number of bytes unless 1111 then int count follows, followed by bytes
* string 0101 nnnn [int] ... // ASCII string, nnnn is # of chars, else 1111 then int count, then bytes
* string 0110 nnnn [int] ... // Unicode string, nnnn is # of chars, else 1111 then int count, then big-endian 2-byte shorts
* 0111 xxxx // unused
* uid 1000 nnnn ... // nnnn+1 is # of bytes
* 1001 xxxx // unused
* array 1010 nnnn [int] objref* // nnnn is count, unless '1111', then int count follows
* 1011 xxxx // unused
* 1100 xxxx // unused
* dict 1101 nnnn [int] keyref* objref* // nnnn is count, unless '1111', then int count follows
* 1110 xxxx // unused
* 1111 xxxx // unused
*/
private void parseObjectTable(DataInputStream in) throws IOException {
int marker;
while ((marker = in.read()) != -1) {
//System.out.println("parseObjectTable "+objectTable.size()+": marker="+Integer.toHexString(marker));
switch ((marker & 0xf0) >> 4) {
case 0: {
parsePrimitive(in, marker & 0xf);
break;
}
case 1: {
int count = 1 << (marker & 0xf);
parseInt(in, count);
break;
}
case 2: {
int count = 1 << (marker & 0xf);
parseReal(in, count);
break;
}
case 3: {
if ((marker & 0xf) != 3) {
throw new IOException("parseObjectTable: illegal marker " + Integer.toBinaryString(marker));
}
parseDate(in);
break;
}
case 4: {
int count = marker & 0xf;
if (count == 15) {
count = readCount(in);
}
parseData(in, count);
break;
}
case 5: {
int count = marker & 0xf;
if (count == 15) {
count = readCount(in);
}
parseAsciiString(in, count);
break;
}
case 6: {
int count = marker & 0xf;
if (count == 15) {
count = readCount(in);
}
parseUnicodeString(in, count);
break;
}
case 7: {
System.out.println("parseObjectTable: illegal marker " + Integer.toBinaryString(marker));
return;
// throw new IOException("parseObjectTable: illegal marker "+Integer.toBinaryString(marker));
//break;
}
case 8: {
int count = (marker & 0xf) + 1;
System.out.println("uid " + count);
break;
}
case 9: {
throw new IOException("parseObjectTable: illegal marker " + Integer.toBinaryString(marker));
//break;
}
case 10: {
int count = marker & 0xf;
if (count == 15) {
count = readCount(in);
}
if (refCount > 255) {
parseShortArray(in, count);
}
else {
parseByteArray(in, count);
}
break;
}
case 11: {
throw new IOException("parseObjectTable: illegal marker " + Integer.toBinaryString(marker));
//break;
}
case 12: {
throw new IOException("parseObjectTable: illegal marker " + Integer.toBinaryString(marker));
//break;
}
case 13: {
int count = marker & 0xf;
if (count == 15) {
count = readCount(in);
}
if (refCount > 256) {
parseShortDict(in, count);
}
else {
parseByteDict(in, count);
}
break;
}
case 14: {
throw new IOException("parseObjectTable: illegal marker " + Integer.toBinaryString(marker));
//break;
}
case 15: {
throw new IOException("parseObjectTable: illegal marker " + Integer.toBinaryString(marker));
//break;
}
}
// System.out.println(objectTable.get(objectTable.size() - 1));
}
}
/**
* Reads a count value from the object table. Count values are encoded
* using the following scheme:
* <p/>
* int 0001 nnnn ... // # of bytes is 2^nnnn, big-endian bytes
*/
private int readCount(DataInputStream in) throws IOException {
int marker = in.read();
if (marker == -1) {
throw new IOException("variableLengthInt: Illegal EOF in marker");
}
if (((marker & 0xf0) >> 4) != 1) {
throw new IOException("variableLengthInt: Illegal marker " + Integer.toBinaryString(marker));
}
int count = 1 << (marker & 0xf);
int value = 0;
for (int i = 0; i < count; i++) {
int b = in.read();
if (b == -1) {
throw new IOException("variableLengthInt: Illegal EOF in value");
}
value = (value << 8) | b;
}
return value;
}
/**
* null 0000 0000
* bool 0000 1000 // false
* bool 0000 1001 // true
* fill 0000 1111 // fill byte
*/
private void parsePrimitive(DataInputStream in, int primitive) throws IOException {
switch (primitive) {
case 0:
objectTable.add(null);
break;
case 8:
objectTable.add(Boolean.FALSE);
break;
case 9:
objectTable.add(Boolean.TRUE);
break;
case 15:
// fill byte: don't add to object table
break;
default:
throw new IOException("parsePrimitive: illegal primitive " + Integer.toBinaryString(primitive));
}
}
/**
* array 1010 nnnn [int] objref* // nnnn is count, unless '1111', then int count follows
*/
private void parseByteArray(DataInputStream in, int count) throws IOException {
BPLArray arr = new BPLArray();
arr.objectTable = objectTable;
arr.objref = new int[count];
for (int i = 0; i < count; i++) {
arr.objref[i] = in.readByte() & 0xff;
if (arr.objref[i] == -1) {
throw new IOException("parseByteArray: illegal EOF in objref*");
}
}
objectTable.add(arr);
}
/**
* array 1010 nnnn [int] objref* // nnnn is count, unless '1111', then int count follows
*/
private void parseShortArray(DataInputStream in, int count) throws IOException {
BPLArray arr = new BPLArray();
arr.objectTable = objectTable;
arr.objref = new int[count];
for (int i = 0; i < count; i++) {
arr.objref[i] = in.readShort() & 0xffff;
if (arr.objref[i] == -1) {
throw new IOException("parseShortArray: illegal EOF in objref*");
}
}
objectTable.add(arr);
}
/*
* data 0100 nnnn [int] ... // nnnn is number of bytes unless 1111 then int count follows, followed by bytes
*/
private void parseData(DataInputStream in, int count) throws IOException {
byte[] data = new byte[count];
in.readFully(data);
objectTable.add(data);
}
/**
* byte dict 1101 nnnn keyref* objref* // nnnn is less than '1111'
*/
private void parseByteDict(DataInputStream in, int count) throws IOException {
BPLDict dict = new BPLDict();
dict.objectTable = objectTable;
dict.keyref = new int[count];
dict.objref = new int[count];
for (int i = 0; i < count; i++) {
dict.keyref[i] = in.readByte() & 0xff;
}
for (int i = 0; i < count; i++) {
dict.objref[i] = in.readByte() & 0xff;
}
objectTable.add(dict);
}
/**
* short dict 1101 ffff int keyref* objref* // int is count
*/
private void parseShortDict(DataInputStream in, int count) throws IOException {
BPLDict dict = new BPLDict();
dict.objectTable = objectTable;
dict.keyref = new int[count];
dict.objref = new int[count];
for (int i = 0; i < count; i++) {
dict.keyref[i] = in.readShort() & 0xffff;
}
for (int i = 0; i < count; i++) {
dict.objref[i] = in.readShort() & 0xffff;
}
objectTable.add(dict);
}
/**
* string 0101 nnnn [int] ... // ASCII string, nnnn is # of chars, else 1111 then int count, then bytes
*/
private void parseAsciiString(DataInputStream in, int count) throws IOException {
byte[] buf = new byte[count];
in.readFully(buf);
String str = new String(buf, "ASCII");
objectTable.add(str);
}
/**
* int 0001 nnnn ... // # of bytes is 2^nnnn, big-endian bytes
*/
private void parseInt(DataInputStream in, int count) throws IOException {
if (count > 8) {
throw new IOException("parseInt: unsupported byte count:" + count);
}
long value = 0;
for (int i = 0; i < count; i++) {
int b = in.read();
if (b == -1) {
throw new IOException("parseInt: Illegal EOF in value");
}
value = (value << 8) | b;
}
objectTable.add(value);
}
/**
* real 0010 nnnn ... // # of bytes is 2^nnnn, big-endian bytes
*/
private void parseReal(DataInputStream in, int count) throws IOException {
switch (count) {
case 4:
objectTable.add(in.readFloat());
break;
case 8:
objectTable.add(in.readDouble());
break;
default:
throw new IOException("parseReal: unsupported byte count:" + count);
}
}
/**
* date 0011 0011 ... // 8 byte float follows, big-endian bytes
*/
private void parseDate(DataInputStream in) throws IOException {
// XXX - This does not yield a date :(
double date = in.readDouble();
//objectTable.add(new Date((long) date));
objectTable.add(new Date());
}
/**
* string 0110 nnnn [int] ... // Unicode string, nnnn is # of chars, else 1111 then int count, then big-endian 2-byte shorts
*/
private void parseUnicodeString(DataInputStream in, int count) throws IOException {
char[] buf = new char[count];
for (int i = 0; i < count; i++) {
buf[i] = in.readChar();
}
String str = new String(buf);
objectTable.add(str);
}
public static void main(String[] args) {
try {
File[] list = new File(SecurityUtils.getProperty("user.home", ""), "Library/Preferences").listFiles();
/*
File[] list = {
//new File(QuaquaManager.getProperty("user.home"), "Documents/BPList/date.plist")
new File(QuaquaManager.getProperty("user.home"), "Library/Preferences/ChristopheGlobalPreferences.plist")
};*/
for (int i = 0; i < list.length; i++) {
String name = list[i].getName();
if (list[i].isDirectory()
//|| name.startsWith(".")
|| !name.endsWith(".plist")
|| name.endsWith("internetconfig.plist")
) {
continue;
}
try {
System.out.println(list[i]);
BinaryPListParser bplr = new BinaryPListParser();
XMLElement xml = bplr.parse(list[i]);
System.out.println(xml);
}
catch (IOException e) {
if (e.getMessage() != null
&& (e.getMessage().startsWith("parseHeader")
|| e.getMessage().startsWith("parseTrailer"))) {
System.out.println(e);
continue;
}
else {
throw e;
}
}
}
}
catch (Throwable e) {
e.printStackTrace();
}
}
}
|