我无法在Artemis的Web控制台中设置标题。如果尝试添加标题字段,则可以在标题名称和出现的文本框中的值中写入写操作,但是如果按“发送消息”,则什么也不会发生,并且错误会打印到内置错误控制台中。 / p>
// the header file needed for the function: scanf() and function: printf() and the value: EOF
#include <stdio.h>
// define a value and give it a meaningful name
#define MAX 50
// prototypes notice the prototype has 'void' but the actual function has nothing between the parens
void data_lines( void );
// notice the signature when the parameters are not used
int main( void )
{
int i = 0;
double X[MAX], Y[MAX], KG[MAX];
// call the sub function
// which returns nothing and has no parameters
data_lines();
while (scanf("%lf%lf%lf",&X[i],&Y[i],&KG[i] )== 3)
{
printf("%lf%lf%lf\n", X[i],Y[i],KG[i]);
i++;
}
printf("%d", MAX);
return 0;
}
void data_lines()
{
char ch;
while (scanf("%c",&ch)!=EOF)
{
if (ch == '\n')
{
return;
}
}
}
当我尝试使用“ JMSPriority”之类的预定义标头以及自定义标头字段时,就会发生这种情况。
有趣的是,如果在Java应用程序中设置标头字段,我可以使用预定义的标头以及自定义标头,而不会出现任何问题。
是否有一种特殊的方法可以在Artemis Web控制台中向消息添加(自定义)标题字段?