[英语阅读]杰克逊演唱会门票将全额退款

Michael Jackson fans will get money back

迈克尔•杰克逊原定于7月13日开始的This is It伦敦系列演唱会因天王突然病逝而流产,负责承办此次演唱会的AEG LIVE公司今日在MichaelJacksonLive.com网站上公布了退票细节。购票歌迷可以选择全额退款或者换取由天王亲自创意设计的纪念版门票。该退票细节公布后,eBay公司管理层也启动了买家保护程序,以使从该网站购买演唱会门票的歌迷免受损失。

杰克逊演唱会门票将全额退款

杰克逊演唱会门票将全额退款

Michael Jackson fans can get full refunds for the pop star's canceled 50-night This is It concert extravaganza - or opt to receive souvenir tickets instead.

More than 750,000 Michael Jackson fans can get full refunds for the pop star's canceled 50-night This is It concert extravaganza - or opt to receive souvenir tickets instead, the promoters announced on Monday.

Jackson's fans from around the world had rushed to snap up tickets for the performances, which were due to start on July 13. British media reports said about $83 million had been spent on 750,000 tickets

In a move that could help recoup some of its losses from the ill-fated tour, Los Angeles-based AEG Live said fans could choose to receive the actual tickets, which it said feature graphics "inspired and designed" by Jackson himself.

Images of the tickets, complete with a 3-D effect, can be viewed on the website www.MichaelJacksonLive.com beginning today, AEG said in a statement. Fans have until Aug 14 to take the ticket offer.

Much of the company's ability to weather the financial storm caused by Jackson's demise may depend on how much of its losses are covered by insurance.

And that will be determined in part by what the Los Angeles County coroner's office finally determines as the cause of the mega-star's death. Officials have warned it will be up to six weeks before a cause of death can be pinpointed because complicated toxicology tests are needed.

While these issues are being worked out, eBay executives extended a buyer protection program to cover anyone who bought a ticket through the company's website.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要使用Jackson验证重复属性,可以使用`@JsonPropertyOrder`注解来指定属性的顺序,并使用`@JsonIgnoreProperties`注解来忽略未知的属性。然后可以使用`ObjectMapper`类的`readValue`方法将JSON字符串转换为Java对象,并使用`JsonNode`类来访问对象的属性。 下面是一个示例代码,假设我们有一个Java类`User`,其中包含属性`username`和`email`,我们希望验证`username`和`email`是否重复: ```java import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; @JsonIgnoreProperties(ignoreUnknown = true) @JsonPropertyOrder({"username", "email"}) public class User { private String username; private String email; public User(String username, String email) { this.username = username; this.email = email; } public String getUsername() { return username; } public String getEmail() { return email; } public static void main(String[] args) throws Exception { String json = "{\"username\": \"john\", \"email\": \"john@example.com\", \"password\": \"password\"}"; ObjectMapper mapper = new ObjectMapper(); JsonNode node = mapper.readTree(json); User user = mapper.treeToValue(node, User.class); System.out.println(user.getUsername()); System.out.println(user.getEmail()); } } ``` 在上面的代码中,我们使用`@JsonIgnoreProperties(ignoreUnknown = true)`注解来忽略未知的属性,使用`@JsonPropertyOrder({"username", "email"})`注解来指定属性的顺序。然后我们使用`ObjectMapper`类的`readTree`方法将JSON字符串转换为`JsonNode`对象,然后使用`mapper.treeToValue`方法将`JsonNode`对象转换为`User`对象。如果`username`和`email`属性重复,Jackson会抛出`com.fasterxml.jackson.databind.JsonMappingException`异常。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值