例外:“其中一个HTTP标头的值的格式不正确”

你好人我有一个问题….我已经创build了一个队列,但我需要创build另一个队列,所以我写这个代码:

CloudStorageAccount storageAccount = CloudStorageAccount.parse (storageConnectionString); CoudQueueClient queueClient1= storageAccount.createCloudQueueClient(); Cloud Queue queue1 =queueClient1.getQueueReference("my-queue"); queue1.createIfNotExist (); 

第一个队列叫“myqueue”,而这个新的叫“我的队列”,但是当你运行这个代码:

 queue1.createIfNotExist(); 

抛出的exception是The value for one of the HTTP headers is not in the correct format ....有谁知道告诉我为什么?