问题列表 - 第34030页

marking existing column as primary key in datatable

I have a datatable from database on the basis of some query.

I want that datatable to have a primary key for an existing column.

How can I do this?

.net datatable

29
推荐指数
1
解决办法
4万
查看次数

How to ignore .java files when compiling using maven?

I have .java files in my source directory that don't compile yet due to some API change. I would like to fix sources one by one and it would be useful to ignore some of them to run tests.

java maven-2 compilation

4
推荐指数
1
解决办法
5084
查看次数

How to set Priority of IntentService in Android

I was wondering if it is possible to set the priority of an IntentService like you can with a Thread. So far I have not found anything.

service multithreading android thread-priority

7
推荐指数
2
解决办法
4787
查看次数

Decompress GZip string in Java

I can find plenty of functions that let you decompress a GZip file, but how do I decompress a GZip string?

I'm trying to parse a HTTP response where the response body is compressed with GZip. However, the entire response is simply stored in a string so part of the string contains binary chars.

I'm attempting to use:

byte responseBodyBytes[] = responseBody.getBytes();
ByteArrayInputStream bais = new ByteArrayInputStream(responseBodyBytes); 
GZIPInputStream gzis = new GZIPInputStream(bais);
Run Code Online (Sandbox Code Playgroud)

But that just throws an exception: java.io.IOException: Not …

java gzip

14
推荐指数
1
解决办法
2万
查看次数

What setup file does eshell (elisp shell) read when it starts? How eshell sets its PATH?

With emacs/eshell, the "echo $PATH" shows different paths than that of $PATH environment variable.

And I also checked that eshell doesn't read .bashrc or .profile, and I think that's the reason why the path is different.

  • eshell在启动时会读取什么设置文件?
  • eshell如何设置其PATH?
  • 如何使eshell的PATH与环境变量的PATH相同?

添加

正如JérômeRadix指出的那样,PATH取决于我如何启动Aquamcs.

  • 当我单击按钮启动Aquamacs时,它具有不同的PATH.
  • 当我从命令行运行'aquamacs'时,它具有相同的PATH.

emacs eshell

10
推荐指数
2
解决办法
4568
查看次数

由于xml文档错误,构建失败

我正在尝试构建一个使用Lucene.Net的ASP.NET MVC 2项目.我在TFS 2010中制作了一个标准的构建定义.当我对新构建进行排队时,它会因此错误而失败:

CSC:生成XML文档文件'xxx\xxx\Lucene.Net.xml'时出错('访问被拒绝.')

但在我的Lucene项目属性中,我没有检查xml注释.如何才能正确构建?我不关心xml文档文件!

tfsbuild tfs2010

8
推荐指数
2
解决办法
5640
查看次数

生产者通过消息队列一致地对消费者进行散列?

我有一个生产者,我想通过一致的散列在消费者中一致地分配工作.例如,对于消费者节点X和Y,任务A,B,C应始终转到消费者X,而D,E,F应转到消费者Y.但如果Z加入消费者池,则可能会转移一点.

我不想处理编写自己的逻辑来连接到消费者节点,特别是不管理节点加入和离开池,所以我走了使用RabbitMQ的路径,每个消费者节点都有一个独占队列.

我遇到的一个问题是列出这些队列,因为生产者需要在分配工作之前知道所有可用的队列.AMQP甚至不支持列表队列,这使我不确定我的整个方法.RabbitMQ和Alice(目前已经破碎)添加了这个功能:是否有用于在RabbitMQ上列出队列和交换的API?

这是一个明智的使用兔子?我应该使用消息队列吗?有没有更好的设计,所以队列可以在消费者之间不断分配我的工作,而不是我需要这样做?

producer-consumer amqp rabbitmq consistent-hashing

7
推荐指数
1
解决办法
1338
查看次数

通过参考传递v.通过指针 - 优点?

可能的重复:
当C++中的pass-by-pointer更喜欢传递引用时?
在C++中通过引用传递指针是否有好处?
如何将对象传递给C++中的函数?

大家好,我正在努力开发一个大型面向对象的c ++应用程序框架,作为我的化学工程研究生研究的一部分.

我发现我的许多函数都指向自定义对象或STL对象.我发现在编写代码方面,这使得访问存储在其中的函数或变量变得更加困难.

但是,除了简单之外,通过引用传递指针是否有任何优点/缺点?

如果一个优于另一个优势,我可能会考虑重构我的代码以统一使用任何最佳方法.如果没有,我仍然可以重构为了可读性而始终使用引用传递(即不必取消引用)

我想再做出最好的决定,因为我的框架已经有40多个文件了,所以我想尽可能早地实现统一的结构,并且无论最佳方法是什么.

提前致谢!

c++ pointers reference function pass-by-reference

0
推荐指数
1
解决办法
4505
查看次数

如何将excel文件转换为mysql数据库?

我的老板要我为现有的excel文件创建一个mysql数据库.我想知道是否有任何方法可以转换或导入excel文件?我搜索过谷歌,但没有找到任何有用的东西.我很感激任何回复....谢谢.

php mysql excel

6
推荐指数
2
解决办法
2万
查看次数

Python - 实例变量列表的最小值

我是Python的新手,我非常喜欢这个min功能.

>>>min([1,3,15])
0
Run Code Online (Sandbox Code Playgroud)

但是,如果我有一个实例列表,并且它们都有一个名为number?的变量怎么办?

class Instance():
    def __init__(self, number):
        self.number = number

i1 = Instance(1)
i2 = Instance(3)
i3 = Instance(15)
iList = [i1,i2,i3]
Run Code Online (Sandbox Code Playgroud)

我真的需要这样的东西吗?

lowestI = iList[0].number
for i in iList:
    if lowestI > iList[i].number: lowestI = iList[i].number
print lowestI
Run Code Online (Sandbox Code Playgroud)

我不能min以一种漂亮的pythonic方式使用吗?

python list min

4
推荐指数
3
解决办法
2324
查看次数