Design the program called MailingLabel.java Program must ask user to enter name and address in input dialog box with each component of address seperated by comma. For instance, "Joe Smith, 123 N. Main Baltimore, MD,21027" The program must then use comma as delimiter and create single string which displays each token on seperate line, except that city/state/zip must appear on same line. Design formatting string to hold all formatting information. Use one application of String.format method to format mailing label. Output must be directed to GUI window using JoptionPane class. (Hint: Use trim method of string class to remove leading and trailing spaces from tokens)