User finnw - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T04:54:25Zhttp://stackoverflow.com/feeds/user/12048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1757794/separate-standard-output-from-standard-error-when-running-a-program-in-eclipse1Separate standard output from standard error when running a program in eclipsefinnw2009-11-18T17:43:18Z2009-12-02T23:30:40Z
<p>I am debugging a Java program in eclipse. This program normally writes binary data to its standard output but can write error messages & stack traces to its standard error stream.</p>
<p>I would like to redirect the binary data to a file, while continuing to show the standard error output in a console. This is trivial when running from the command line. Is it possible under Eclipse?</p>
<p>So far I have only figured out how to redirect both standard output and standard error to the same file. I cannot see a way to separate the two other than adding a new command-line option to the program.</p>
<p><hr></p>
<p>Related: <a href="http://stackoverflow.com/questions/799250/i-o-redirection-in-eclipse">http://stackoverflow.com/questions/799250/i-o-redirection-in-eclipse</a></p>
http://stackoverflow.com/questions/1331174/why-no-sortedmultiset-in-google-collections2Why no SortedMultiset in Google Collections?finnw2009-08-25T21:40:30Z2009-11-29T05:43:38Z
<p><a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a> contains the <code>Multiset</code> interface and the <code>TreeMultiset</code> class, but I was surprised to find that there is no corresponding <code>SortedMultiset</code> interface.</p>
<p>Something like that would be very useful for modelling discrete probability distributions.</p>
<p>Before I attempt to implement it myself, I would like to know if there is a specific reason for leaving it out, e.g. likely violation of <code>Multiset</code> or <code>Collection</code> invariants, or inherent performance problems etc.</p>
http://stackoverflow.com/questions/1808961/synchronization-on-the-local-variables/1809161#18091612Answer by finnw for Synchronization on the local variablesfinnw2009-11-27T14:43:01Z2009-11-27T14:43:01Z<p>It might be easier to work with a synchronized wrapper:</p>
<pre><code>public class FooWrapper {
public FooWrapper(Foo theFoo) {
this.theFoo = theFoo;
this.lock = new Object();
}
public void processIfRequired() {
synchronized (lock) {
if (theFoo.needsProcessing()) {
theFoo.process();
}
}
}
private Foo theFoo;
private Object lock;
}
</code></pre>
<p>then:</p>
<pre><code>public void process(FooWrapper[] foos) {
for (final FooWrapper foo : foos) {
foo.processIfRequired();
}
}
</code></pre>
http://stackoverflow.com/questions/1804489/reading-samples-directly-from-a-converted-mp3-file-using-naudio0Reading samples directly from a converted MP3 file using NAudiofinnw2009-11-26T15:55:44Z2009-11-27T06:46:44Z
<p>I am trying to read PCM samples from a (converted) MP3 file using NAudio, but failing as the <code>Read</code> method returns zero (indicating EOF) every time.</p>
<p>Example: this piece of code, which attempts to read a single 16-bit sample, always prints "0":</p>
<pre><code>using System;
using NAudio.Wave;
namespace NAudioMp3Test
{
class Program
{
static void Main(string[] args)
{
using (Mp3FileReader fr = new Mp3FileReader("MySong.mp3"))
{
byte[] buffer = new byte[2];
using (WaveStream pcm = WaveFormatConversionStream.CreatePcmStream(fr))
{
using (WaveStream aligned = new BlockAlignReductionStream(pcm))
{
Console.WriteLine(aligned.WaveFormat);
Console.WriteLine(aligned.Read(buffer, 0, 2));
}
}
}
}
}
}
</code></pre>
<p>output:</p>
<pre><code>16 bit PCM: 44kHz 2 channels
0
</code></pre>
<p>But this version which reads from a WAV file works fine (I used iTunes to convert the MP3 to a WAV so they should contain similar samples):</p>
<pre><code>static void Main(string[] args)
{
using (WaveFileReader pcm = new WaveFileReader("MySong.wav"))
{
byte[] buffer = new byte[2];
using (WaveStream aligned = new BlockAlignReductionStream(pcm))
{
Console.WriteLine(aligned.WaveFormat);
Console.WriteLine(aligned.Read(buffer, 0, 2));
}
}
}
</code></pre>
<p>output:</p>
<pre><code>16 bit PCM: 44kHz 2 channels
2
</code></pre>
<p>What is going on here? Both streams have the same wave formats so I would expect to be able to use the same API to read samples. Setting the <code>Position</code> property doesn't help either.</p>
http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/1743353#17433530Answer by finnw for Factorial Algorithms in different languagesfinnw2009-11-16T16:43:05Z2009-11-16T16:43:05Z<h2>SETL</h2>
<p>...where Haskell and Python borrowed their list comprehensions from.</p>
<pre><code>proc factorial(n);
return 1 */ {1..n};
end factorial;
</code></pre>
<p>And the built-in <code>INTEGER</code> type is arbitrary-precision, so this will work for any positive <code>n</code>.</p>
http://stackoverflow.com/questions/1706496/java-effective-files-copying/1706619#17066191Answer by finnw for java - effective files copyingfinnw2009-11-10T09:24:42Z2009-11-10T09:24:42Z<p>Check out the <a href="http://guava-libraries.googlecode.com/svn/trunk/javadoc/index.html" rel="nofollow"><code>Files</code></a> class from Google's <a href="http://code.google.com/p/guava-libraries/" rel="nofollow">guava</a> library. It contains some utility methods for copying whole files.</p>
http://stackoverflow.com/questions/1704623/remove-method-in-java-bst/1704667#17046670Answer by finnw for remove method in java BSTfinnw2009-11-09T23:26:32Z2009-11-09T23:26:32Z<p><code>obj</code> is an instance of <code>E</code> not <code>TreeNode383<E></code> so it has no <code>getLeft()</code> or <code>getRight()</code> method. And even if it did, you spelled it wrong.</p>
<p>And what's <code>root</code>? I can't see a declaration for that anywhere.</p>
<p>This syntax makes no sense either:</p>
<pre><code>obj.setright = new TreeNode383<E>(newData, null, null, null);
</code></pre>
<p><code>setRight()</code> is a method not a field (Java does not have properties like C#) Plus you need a capital 'R' in the name.</p>
<p>So maybe that should be</p>
<pre><code>obj.setRight(new TreeNode383<E>(newData, null, null, null));
</code></pre>
<p>that is, if <code>newData</code> was declared, which it isn't.</p>
<p>There are too many errors here to make sense of your code. Try implementing one function at a time.</p>
http://stackoverflow.com/questions/1692863/what-is-the-difference-between-identity-and-equality-in-oop/1692890#16928900Answer by finnw for What is the difference between identity and equality in OOP?finnw2009-11-07T12:32:37Z2009-11-07T12:32:37Z<p>Some links:</p>
<ul>
<li><a href="http://today.java.net/pub/a/today/2006/07/27/defining-object-identity.html" rel="nofollow">http://today.java.net/pub/a/today/2006/07/27/defining-object-identity.html</a></li>
<li><a href="http://ocw.mit.edu/NR/rdonlyres/Electrical-Engineering-and-Computer-Science/6-170Fall-2005/D659DC53-FB1D-403C-8E35-2CAECBED266E/0/lec12.pdf" rel="nofollow">http://ocw.mit.edu/NR/rdonlyres/Electrical-Engineering-and-Computer-Science/6-170Fall-2005/D659DC53-FB1D-403C-8E35-2CAECBED266E/0/lec12.pdf</a></li>
<li><a href="http://kentreis.wordpress.com/2007/02/08/identity-and-equality-in-ruby-and-smalltalk/" rel="nofollow">http://kentreis.wordpress.com/2007/02/08/identity-and-equality-in-ruby-and-smalltalk/</a></li>
</ul>
http://stackoverflow.com/questions/1691664/table-like-java-data-structure/1692865#16928650Answer by finnw for table like java data structurefinnw2009-11-07T12:25:45Z2009-11-07T12:25:45Z<p>If I understand your question right, all you need is a <code>Comparable</code> class to represent a row.</p>
<pre><code>public static class Row
implements Comparable<Row> {
public Row(int sij, int i, int j) {
this.sij = sij;
this.i = i;
this.j = j;
}
public int compareTo(Row other) {
return Integer.valueOf(sij).compareTo(other.sij);
}
public final int sij;
public final int i;
public final int j;
}
</code></pre>
<p>You can then populate a <code>List</code> with instances of <code>Row</code> and use <code>Collections.sort</code> to sort it.</p>
http://stackoverflow.com/questions/1691125/compile-a-java-class-against-an-interface-even-if-none-was-specified/1692836#16928361Answer by finnw for Compile a Java class against an interface even if none was specifiedfinnw2009-11-07T12:12:06Z2009-11-07T12:12:06Z<p>If the specification contains <em>exact</em> method signatures, you might as well supply the interface as the students will not really be writing the interface but copying it from the spec.</p>
<p>If the specification is not exact (just describing the parameters of each method) then you should probably not use an interface, because there may be many valid interpretations of the same method or parameter description (<code>protected</code> vs. <code>public</code>, different argument order, <code>List</code> vs. array vs. <code>Iterable</code>, <code>BitSet</code> vs. <code>Set<Integer></code> etc.) You should not penalise your students just for coming up with a working solution that does not exactly match yours.</p>
http://stackoverflow.com/questions/1686862/how-to-remove-non-digits/1686935#16869357Answer by finnw for How to remove non digits? finnw2009-11-06T11:12:22Z2009-11-06T12:34:11Z<p>Just for fun I ran a benchmark:</p>
<pre><code>import java.util.List;
import java.util.regex.Pattern;
import com.google.common.base.Joiner;
import com.google.common.base.Predicate;
import com.google.common.collect.Iterables;
import com.google.common.primitives.Chars;
public final class Main {
private static final String INPUT = "0a1b2c3d4e";
private static final int REPS = 10000000;
public static volatile String out;
public static void main(String[] args) {
System.err.println(removeNonDigits1(INPUT));
System.err.println(removeNonDigits2(INPUT));
System.err.println(removeNonDigits3(INPUT));
System.err.println(removeNonDigits4(INPUT));
System.err.println(removeNonDigits5(INPUT));
long t0 = System.currentTimeMillis();
for (int i = 0; i < REPS; ++ i) {
out = removeNonDigits1(INPUT);
}
long t1 = System.currentTimeMillis();
for (int i = 0; i < REPS; ++ i) {
out = removeNonDigits2(INPUT);
}
long t2 = System.currentTimeMillis();
for (int i = 0; i < REPS; ++ i) {
out = removeNonDigits3(INPUT);
}
long t3 = System.currentTimeMillis();
for (int i = 0; i < REPS; ++ i) {
out = removeNonDigits4(INPUT);
}
long t4 = System.currentTimeMillis();
for (int i = 0; i < REPS; ++ i) {
out = removeNonDigits5(INPUT);
}
long t5 = System.currentTimeMillis();
System.err.printf("removeNonDigits1: %d\n", t1-t0);
System.err.printf("removeNonDigits2: %d\n", t2-t1);
System.err.printf("removeNonDigits3: %d\n", t3-t2);
System.err.printf("removeNonDigits4: %d\n", t4-t3);
System.err.printf("removeNonDigits5: %d\n", t5-t4);
}
private static final String PATTERN_SOURCE = "[^0-9]+";
private static final Pattern PATTERN = Pattern.compile(PATTERN_SOURCE);
public static String removeNonDigits1(String input) {
return input.replaceAll(PATTERN_SOURCE, "");
}
public static String removeNonDigits2(String input) {
return PATTERN.matcher(input).replaceAll("");
}
public static String removeNonDigits3(String input) {
char[] arr = input.toCharArray();
int j = 0;
for (int i = 0; i < arr.length; ++ i) {
if (Character.isDigit(arr[i])) {
arr[j++] = arr[i];
}
}
return new String(arr, 0, j);
}
public static String removeNonDigits4(String input) {
StringBuilder result = new StringBuilder();
for (int i = 0; i < input.length(); ++ i) {
char c = input.charAt(i);
if (Character.isDigit(c)) {
result.append(c);
}
}
return result.toString();
}
public static String removeNonDigits5(String input) {
List<Character> charList = Chars.asList(input.toCharArray());
Predicate<Character> isDigit =
new Predicate<Character>() {
public boolean apply(Character input) {
return Character.isDigit(input);
}
};
Iterable<Character> filteredList =
Iterables.filter(charList, isDigit);
return Joiner.on("").join(filteredList);
}
}
</code></pre>
<p>And got these results:</p>
<pre><code>removeNonDigits1: 74656
removeNonDigits2: 52235
removeNonDigits3: 4468
removeNonDigits4: 5250
removeNonDigits5: 29610
</code></pre>
<p>The amusing part is that <code>removeNonDigits5</code> (the Google Collections version) was supposed to be an example of a silly, overcomplicated and inefficent solution, yet it's twice as fast as the regex version.</p>
<p><strong>Update</strong>:
Pre-compiling the regex increases the speed, but not as much as one might expect.</p>
<p>Re-using the <code>Matcher</code> gives another slight speedup, but probably not worth sacrificing thread-safety for.</p>
http://stackoverflow.com/questions/1675898/java-interspersing-bytes-and-characters/1682970#16829701Answer by finnw for Java: interspersing bytes and charactersfinnw2009-11-05T19:30:59Z2009-11-05T19:30:59Z<p>Instead of using a <code>Reader</code> and <code>InputStream</code> and attempting to switch back and forth between the two, try using a callback interface with one method for binary data and another for character data. e.g.</p>
<pre><code>interface MixedProcessor {
void processBinaryData(byte[] bytes, int off, int len);
void processText(String line);
}
</code></pre>
<p>Then have another "splitter" class that:</p>
<ul>
<li>Decides which sections of the input are text and which are binary, and passes them to the corresponding processor method</li>
<li>Converts bytes to characters when required (with the help of a <code>CharsetDecoder</code>)</li>
</ul>
<p>The splitter class might look something like this:</p>
<pre><code>class Splitter {
public Splitter(Charset charset) { /* ... */ }
public void readFully(InputStream is, MixedProcessor processor) throws IOException { /* ... */ }
}
</code></pre>
http://stackoverflow.com/questions/1675037/removing-items-from-a-collection-in-java-while-iterating-over-it/1682428#16824280Answer by finnw for Removing items from a collection in java while iterating over itfinnw2009-11-05T18:01:19Z2009-11-05T18:01:19Z<p>It is possible to implement a <code>Set</code> that allows its elements to be removed whilst iterating over it.</p>
<p>I think the standard implementations (HashSet, TreeSet etc.) disallow it because that means they can use more efficient algorithms, but it's not hard to do.</p>
<p>Here's an incomplete example using Google Collections:</p>
<pre><code>import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import com.google.common.base.Predicates;
import com.google.common.collect.ForwardingSet;
import com.google.common.collect.Iterators;
import com.google.common.collect.Sets;
public class ConcurrentlyModifiableSet<E>
extends ForwardingSet<E> {
/** Create a new, empty set */
public ConcurrentlyModifiableSet() {
Map<E, Boolean> map = new ConcurrentHashMap<E, Boolean>();
delegate = Sets.newSetFromMap(map);
}
@Override
public Iterator<E> iterator() {
return Iterators.filter(delegate.iterator(), Predicates.in(delegate));
}
@Override
protected Set<E> delegate() {
return this.delegate;
}
private Set<E> delegate;
}
</code></pre>
<p>Note: The iterator does not support the <code>remove()</code> operation (but the example in the question does not require it.)</p>
http://stackoverflow.com/questions/1664484/maze-recursive-solving-and-randomly-creating-a-maze-java/1664564#16645640Answer by finnw for Maze recursive solving and randomly creating a maze (JAVA)finnw2009-11-03T00:30:48Z2009-11-03T00:30:48Z<p>Instead of just storing one of four characters for each cell, consider storing an integer representing the distance from that cell to the exit (with a special value such as <code>Integer.MAX_VALUE</code> for walls and areas enclosed by walls.)</p>
<p>Once you have populated the array, you can convert that to a string representation that shows the path taken.</p>
<p><hr /></p>
<p>Note: I do know the algorithm and implemented it just a couple of days ago but as this is a homework problem I will not post the whole solution immediately.</p>
http://stackoverflow.com/questions/1618759/limit-a-listiterator-to-the-first-n-elements-optimized0Limit a ListIterator to the first N elements (optimized)finnw2009-10-24T18:56:14Z2009-11-03T00:13:58Z
<p>What is a simple and fast way to get an iterator that returns at most N elements from the start of a <code>List</code>?</p>
<p>The simplest versions I could come up with are:</p>
<p>#1:</p>
<pre><code>import com.google.common.collect.Iterators;
// ...
public static <E> Iterator<E> lengthLimitedIterator(Iterable<E> source, int maxLen) {
return Iterators.partition(source.iterator(), maxLen).next().iterator();
}
</code></pre>
<p>#2:</p>
<pre><code>public static <E> Iterator<E> lengthLimitedIterator(List<E> source, int maxLen) {
return source.subList(0, Math.min(source.size(), maxLen)).iterator();
}
</code></pre>
<p>Unfortunately both versions create a temporary <code>List</code> which significantly affects performance as I am calling this method millions of times in a tight loop.</p>
<p>Are there any other library functions I could use for this?</p>
<p><hr /></p>
<p>Note: I cannot avoid iterating over the list as I am passing it to a method which takes an iterator as its argument and I cannot modify that class.</p>
http://stackoverflow.com/questions/1659986/java-parameterized-runnable/1660705#16607050Answer by finnw for Java: Parameterized Runnablefinnw2009-11-02T11:22:38Z2009-11-02T11:22:38Z<p>There is also <code><a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/base/Function.html" rel="nofollow">com.google.common.base.Function<F, T></a></code> from Google Collections.</p>
<p>If you set the output type to <code>?</code> or <code>Void</code> (and always have it return <code>null</code>) you can use it as an alternative to <code>Runnable</code> with an input parameter.</p>
<p>This has the advantage of being able to use <code>Functions.compose</code> to transform the input value, <code>Iterables.transform</code> to apply it to every element of a collection etc.</p>
http://stackoverflow.com/questions/1660441/java-flag-to-enable-extended-serialization-debugging-info/1660514#16605140Answer by finnw for Java flag to enable extended Serialization debugging infofinnw2009-11-02T10:39:56Z2009-11-02T10:39:56Z<p>I am not aware of such a flag, but I don't think more verbose stack traces will help.</p>
<p>The name of the class that is not serializable normally appears in the exception message, e.g. "<code>java.io.NotSerializableException: com.mycompany.mypackage.Foo</code>"</p>
<p>The stack trace shows what methods were executing at the time, usually something like:</p>
<pre><code>at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
</code></pre>
<p>But any extra information about those methods will not tell you what class caused the problem.</p>
http://stackoverflow.com/questions/1658697/java-vector-and-thread-safety/1658739#16587391Answer by finnw for java Vector and thread safetyfinnw2009-11-01T23:13:55Z2009-11-01T23:13:55Z<p>I assume you are referring to <code>java.util.Vector</code>.</p>
<p>Actually <code>Vector.size()</code> <em>is</em> synchronized and will return a value consistent with the vector's state at that time. If it returns 42, then at some point in time the vector contained 42 elements.</p>
<p>If you're adding items in a loop in another thread then you cannot predict the exact size, but it should be fine for monitoring purposes.</p>
http://stackoverflow.com/questions/1652945/nullpointerexception-when-trying-to-set-a-jcheckbox/1653070#16530701Answer by finnw for NullPointerException when trying to set a jcheckboxfinnw2009-10-31T01:17:51Z2009-10-31T01:17:51Z<p>Assuming line 224 of InvoiceSelectionUI.java is included in your sample, one of the following must be null:</p>
<ul>
<li><code>InvoiceUI</code></li>
<li><code>InvoiceUI.jCheckBox1</code></li>
<li><code>InvoiceUI.jCheckBox2</code></li>
<li><code>flatRateint</code> (if it's an <code>Integer</code>, but not if it's an <code>int</code>)</li>
</ul>
http://stackoverflow.com/questions/1643305/bird-songs-for-distraction-free-programming/1643448#16434484Answer by finnw for Bird songs for distraction free programmingfinnw2009-10-29T12:42:38Z2009-10-29T12:42:38Z<ol>
<li>Connect some good <strong>padded</strong> headphones (I have a pair of Sennheiser HD280) to an iPod or portable CD player</li>
<li>Leave the iPod switched <strong>off</strong></li>
</ol>
<p>Now you can block out most of the noise without (a) adding more distracting sounds or (b) the political problems you may get with ear muffs or plugs (tells your colleagues you don't want to hear their voices, which may be true but you don't want to tell them that directly.)</p>
http://stackoverflow.com/questions/1643382/is-it-c-or-c-net/1643414#16434141Answer by finnw for Is it C# or C#.NET?finnw2009-10-29T12:35:49Z2009-10-29T12:35:49Z<p>"VB or VB.NET" makes sense as there are both .NET and non-.NET versions of the language. It does not make sense with C# because there is only a .NET version.</p>
<p>Similar with ASP and ASP.NET. The non-.NET version is usually called "Classic ASP."</p>
<p>I've never heard the C# <em>language</em> referred to as "C# .NET" but I guess you could reasonably use that term (even if it's a little redundant.)</p>
<p>So don't worry, there is only one C# language.</p>
http://stackoverflow.com/questions/1618759/limit-a-listiterator-to-the-first-n-elements-optimized/1620742#16207420Answer by finnw for Limit a ListIterator to the first N elements (optimized)finnw2009-10-25T12:17:20Z2009-10-25T12:17:20Z<p>This version turns out to be faster than any of the other examples:</p>
<pre><code>public static <E> Iterator<E> lengthLimitedIterator(List<E> source, int maxLen) {
maxLen = Math.min(maxLen, source.size());
ArrayList<E> tempList = new ArrayList<E>(maxLen);
for (int i = 0; i < maxLen; ++ i) {
tempList.add(source.get(i));
}
return tempList.iterator();
}
</code></pre>
<p>If the temporary list has to be created anyway, an <code>ArrayList</code> is faster than the decorated lists returned by the other library methods.</p>
<p>My guess is that <code>ArrayList</code> is getting some special treatment within the VM.</p>
<p>Maybe this would be inefficient for very long lists, but my lists are short (nearly always fewer than 50 elements.)</p>
http://stackoverflow.com/questions/1604869/java-recursion-and-merge-sort/1605020#16050200Answer by finnw for Java recursion and Merge Sortfinnw2009-10-22T04:25:55Z2009-10-22T04:25:55Z<p>I can see one problem (though it doesn't explain the compile-time errors): </p>
<p><code>mergeSub()</code> does not check for being passed an empty array. If you do pass it an empty array you will get an <code>ArrayIndexOutOfBoundsException</code> at the <code>arr[0]=array[left];</code> statemnt</p>
http://stackoverflow.com/questions/1604935/freeing-java-file-handles/1604997#16049972Answer by finnw for Freeing java file handlesfinnw2009-10-22T04:18:24Z2009-10-22T04:18:24Z<p>There is little point in overriding <code>finalize()</code>. If the handle is getting GCed and finalized, then so is the instance of <code>java.io.BufferedReader</code> and it will get closed.</p>
<p>It is possible (according to the spec) that the handle is being GCed but not finalized, but this is not very likely.</p>
<p>You could try using <code>PhantomReference</code>s to clean up unused file handles, but my guess is that your instances of <code>BufferedReaderImpl</code> are still referenced from somewhere (e.g. values in a <code>Map</code> from filenames to open handles) and that is what is preventing them from being closed (in which case finalizers will not help.)</p>
http://stackoverflow.com/questions/1567598/text-classification-in-java/1567700#15677003Answer by finnw for Text Classification in Javafinnw2009-10-14T17:10:22Z2009-10-14T17:10:22Z<p>I have done something similar for a bespoke spam filter.</p>
<p>A technique I found to be both simple and fast is:</p>
<ol>
<li>Split the input file into words first.</li>
<li>Call <code>intern()</code> on each word, to simplify the comparisons in step 3.</li>
<li>Create a <code>Term</code> class, encapsulating an array of up to three strings. Its <code>equals()</code> method can do pointer comparison on the strings, rather than calling <code>String.equals()</code>. Create a <code>Term</code> instance for each group of 2 or 3 consecutive words in the input.</li>
<li>Use a <code>Multimap</code> (from Google Collections) to map each term to the set of files in which it appears.</li>
</ol>
http://stackoverflow.com/questions/1565483/creating-a-byte-from-a-listbyte/1566057#15660571Answer by finnw for Creating a byte[] from a List<Byte>finnw2009-10-14T12:54:57Z2009-10-14T13:18:36Z<p>Using <code><a href="http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/primitives/Bytes.html" rel="nofollow">Bytes</a>.<a href="http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/primitives/Bytes.html#toArray%28java.util.Collection%29" rel="nofollow">toArray</a>(Collection<Byte>)</code> (from Google's <a href="http://code.google.com/p/guava-libraries/" rel="nofollow">Guava</a> library.)</p>
<p>Example:</p>
<pre><code>import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.google.common.primitives.Bytes;
class Test {
public static void main(String[] args) {
List<Byte> byteList = new ArrayList<Byte>();
byteList.add((byte) 1);
byteList.add((byte) 2);
byteList.add((byte) 3);
byte[] byteArray = Bytes.toArray(byteList);
System.out.println(Arrays.toString(byteArray));
}
}
</code></pre>
<p>Or similarly, using <a href="http://pcj.sourceforge.net/" rel="nofollow">PCJ</a>:</p>
<pre><code>import bak.pcj.Adapter;
// ...
byte[] byteArray = Adapter.asBytes(byteList).toArray();
</code></pre>
http://stackoverflow.com/questions/1565214/is-there-a-way-to-check-if-two-collections-contain-the-same-elements-independent/1565262#15652626Answer by finnw for Is there a way to check if two Collections contain the same elements, independent of order?finnw2009-10-14T09:43:58Z2009-10-14T09:43:58Z<p>This is three method calls and uses Google Collections, but is possibly as simple as it gets:</p>
<pre><code>HashMultiset.create(c1).equals(HashMultiset.create(c2));
</code></pre>
<p>Creating the temporary <code>Multiset</code>s may appear wasteful, but to compare the collections efficiently you need to index them somehow.</p>
http://stackoverflow.com/questions/1561273/parse-an-integer-from-a-string-with-trailing-garbage2Parse an integer from a string with trailing garbage.finnw2009-10-13T16:13:08Z2009-10-14T09:21:53Z
<p>I need to parse a decimal integer that appears at the start of a string.</p>
<p>There may be trailing garbage following the decimal number. This needs to be ignored (even if it contains other numbers.)</p>
<p>e.g.</p>
<pre><code>"1" => 1
" 42 " => 42
" 3 -.X.-" => 3
" 2 3 4 5" => 2
</code></pre>
<p>Is there a built-in method in the .NET framework to do this?</p>
<p><code>int.TryParse()</code> is not suitable. It allows trailing spaces but not other trailing characters.</p>
<p>It would be quite easy to implement this but I would prefer to use the standard method if it exists.</p>
http://stackoverflow.com/questions/1561273/parse-an-integer-from-a-string-with-trailing-garbage/1561775#15617750Answer by finnw for Parse an integer from a string with trailing garbage.finnw2009-10-13T17:36:30Z2009-10-14T09:21:53Z<p>This is how I would have done it in Java:</p>
<pre><code>int parseLeadingInt(String input)
{
NumberFormat fmt = NumberFormat.getIntegerInstance();
fmt.setGroupingUsed(false);
return fmt.parse(input, new ParsePosition(0)).intValue();
}
</code></pre>
<p>I was hoping something similar would be possible in .NET.</p>
<p>This is the regex-based solution I am currently using:</p>
<pre><code>int? parseLeadingInt(string input)
{
int result = 0;
Match match = Regex.Match(input, "^[ \t]*\\d+");
if (match.Success && int.TryParse(match.Value, out result))
{
return result;
}
return null;
}
</code></pre>
http://stackoverflow.com/questions/1453821/sqlite3-programatically-determine-whether-a-column-is-sorted-in-ascending-or-des0SQLite3: programatically determine whether a column is sorted in ascending or descending orderfinnw2009-09-21T10:24:34Z2009-10-11T00:13:25Z
<p>Suppose I have an index on a table in SQLite3:</p>
<pre><code>CREATE TABLE Person (id integer primary key, firstName varchar(20), lastName varchar(20), address varchar(200));
CREATE INDEX IX_Person ON Person (lastName ASC, firstName ASC);
</code></pre>
<p>I can discover which columns are in the index like this:</p>
<pre><code>sqlite> pragma index_info('ix_person');
0|2|lastName
1|1|firstName
</code></pre>
<p>But this does not tell me whether the columns sorted are in ascending or descending order.</p>
<p>Is there a way to determine this programatically without re-parsing the <code>CREATE INDEX</code> statement?</p>
http://stackoverflow.com/questions/1832640/checking-serial-code-correctnessComment by finnw on Checking serial code correctnessfinnw2009-12-02T12:55:28Z2009-12-02T12:55:28ZSee also: <a href="http://stackoverflow.com/questions/559163/whats-a-good-approach-for-developing-a-simple-serial-number-generator-verifier" rel="nofollow" title="whats a good approach for developing a simple serial number generator verifier">stackoverflow.com/questions/559163/…</a>http://stackoverflow.com/questions/1331174/why-no-sortedmultiset-in-google-collections/1813512#1813512Comment by finnw on Why no SortedMultiset in Google Collections?finnw2009-11-28T22:28:51Z2009-11-28T22:28:51ZAlmost. One thing it can't do efficiently is answer "how many elements in my Multiset<Integer> are less than 42?" The element set (and its headSet/tailSet methods) will give you the number of distinct values less than 42, but not the number of elements.http://stackoverflow.com/questions/1808961/synchronization-on-the-local-variables/1809161#1809161Comment by finnw on Synchronization on the local variablesfinnw2009-11-27T16:20:03Z2009-11-27T16:20:03Z@Sergey, <a href="http://stackoverflow.com/questions/442564/avoid-synchronizedthis-in-java" rel="nofollow" title="avoid synchronizedthis in java">stackoverflow.com/questions/442564/…</a>http://stackoverflow.com/questions/1804489/reading-samples-directly-from-a-converted-mp3-file-using-naudio/1807145#1807145Comment by finnw on Reading samples directly from a converted MP3 file using NAudiofinnw2009-11-27T14:12:36Z2009-11-27T14:12:36ZI assumed the <code>BlockAlignReductionStream</code> would do that. Maybe I need to pass it a parameter to tell it to allocate a larger buffer?http://stackoverflow.com/questions/1757794/separate-standard-output-from-standard-error-when-running-a-program-in-eclipse/1758002#1758002Comment by finnw on Separate standard output from standard error when running a program in eclipsefinnw2009-11-26T15:58:50Z2009-11-26T15:58:50ZNTail is designed for text filtering and is not suitable for the <i>binary</i> data my program normally writes to stdout.http://stackoverflow.com/questions/1757794/separate-standard-output-from-standard-error-when-running-a-program-in-eclipse/1760834#1760834Comment by finnw on Separate standard output from standard error when running a program in eclipsefinnw2009-11-19T12:35:18Z2009-11-19T12:35:18ZThis works, but I was hoping to find a way to do it within the IDE, without modifying the I/O code of the applicationhttp://stackoverflow.com/questions/1720201/go-examples-and-idioms/1721060#1721060Comment by finnw on Go examples and idiomsfinnw2009-11-16T23:27:58Z2009-11-16T23:27:58ZWhat language is that second code fragment written in? It's neither go nor C.http://stackoverflow.com/questions/1742800/easiest-way-to-call-java-from-cComment by finnw on Easiest way to call Java from C#?finnw2009-11-16T16:19:13Z2009-11-16T16:19:13ZDupe. <a href="http://stackoverflow.com/questions/171717/using-java-classes-with-c" rel="nofollow" title="using java classes with c">stackoverflow.com/questions/171717/…</a>http://stackoverflow.com/questions/1735236/how-to-write-my-own-printf-in-c/1735273#1735273Comment by finnw on How to write my own printf() in C ?finnw2009-11-15T14:38:58Z2009-11-15T14:38:58ZTelling a newbie C coder to read GNU code? Don't be cruel :-)http://stackoverflow.com/questions/1737236/java-newbie-question-staticComment by finnw on Java newbie question: static{}?finnw2009-11-15T14:32:10Z2009-11-15T14:32:10ZDupe. <a href="http://stackoverflow.com/questions/335311/java-static-keyword" rel="nofollow" title="java static keyword">stackoverflow.com/questions/335311/…</a>http://stackoverflow.com/questions/112920/whats-your-favorite-abandoned-rule/112937#112937Comment by finnw on What's your favorite "abandoned rule"?finnw2009-11-11T12:32:56Z2009-11-11T12:32:56Z-1 for not mentioning profilinghttp://stackoverflow.com/questions/112920/whats-your-favorite-abandoned-rule/112948#112948Comment by finnw on What's your favorite "abandoned rule"?finnw2009-11-11T12:31:57Z2009-11-11T12:31:57ZI don't see the "abuse" here, that's a perfectly normal loop. Would you call iterating over a linked list in C "abuse" just because it does something other than increment a counter?http://stackoverflow.com/questions/112920/whats-your-favorite-abandoned-rule/113985#113985Comment by finnw on What's your favorite "abandoned rule"?finnw2009-11-11T12:27:49Z2009-11-11T12:27:49ZI do both at once: I start by writing interfaces. I guess that still counts as "coding without a design" as I'm typing into a code editor not a word processor.http://stackoverflow.com/questions/275768/is-there-a-way-to-split-strings-with-string-split-and-include-the-delimiters/279337#279337Comment by finnw on Is there a way to split strings with String.split() and include the delimiters?finnw2009-11-10T09:31:10Z2009-11-10T09:31:10Z-1 First output does not match inputhttp://stackoverflow.com/questions/1701620/how-do-i-pop-up-an-alert-in-javascriptComment by finnw on How do I pop up an alert in Javascript?finnw2009-11-09T23:36:32Z2009-11-09T23:36:32ZUnless this is a dupe (which someone would have found by now) it's a legitimate question.