Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to be able to traverse through my entire object graph and log all contents of all member fields.

For example: Object A has a collection of Object B's which has a collection of Object C's and A, B, C have additional fields on them, etc.

Apache Commons ToStringBuilder is not sufficient since it won't traverse down an object graph or output contents of a collection.

Does anyone know of another library that will do this or have a code snippet that does this?

share|improve this question
Smells like Serialization. Except that you may not be interested in an ObjectOutputStream but in something human-readable !? – Andreas_D Jun 30 '10 at 14:01
Are you sure that Apaches ToStringBuilder does not traverse? I seem to remember that it does.. Be careful of circular refences... – bert Jun 30 '10 at 14:05
I'm positive. Just doing ToStringBuidler on an ArrayList will yield output like the following: java.util.ArrayList@1e1006c[ size=18 ]. I want it to actually output each value in the ArrayList and for each value, output each value of it's member fields, etc... – BestPractices Jun 30 '10 at 14:11

4 Answers

up vote 25 down vote accepted

You can traverse the whole tree using org.apache.commons.lang.builder.ReflectionToStringBuilder. The trick is that in ToStringStyle you need to traverse into the value. ToStringStyle will take care of values, already processed, and will not allow recursion. Here we go:

System.out.println(ReflectionToStringBuilder.toString(schema, new RecursiveToStringStyle(5)));

private static class RecursiveToStringStyle extends ToStringStyle {

    private static final int    INFINITE_DEPTH  = -1;

    /**
     * Setting {@link #maxDepth} to 0 will have the same effect as using original {@link #ToStringStyle}: it will
     * print all 1st level values without traversing into them. Setting to 1 will traverse up to 2nd level and so
     * on.
     */
    private int                 maxDepth;

    private int                 depth;

    public RecursiveToStringStyle() {
        this(INFINITE_DEPTH);
    }

    public RecursiveToStringStyle(int maxDepth) {
        setUseShortClassName(true);
        setUseIdentityHashCode(false);

        this.maxDepth = maxDepth;
    }

    @Override
    protected void appendDetail(StringBuffer buffer, String fieldName, Object value) {
        if (value.getClass().getName().startsWith("java.lang.")
                    || (maxDepth != INFINITE_DEPTH && depth >= maxDepth)) {
            buffer.append(value);
        }
        else {
            depth++;
            buffer.append(ReflectionToStringBuilder.toString(value, this));
            depth--;
        }
    }

    // another helpful method
    @Override
    protected void appendDetail(StringBuffer buffer, String fieldName, Collection<?> coll) {
         depth++;
         buffer.append(ReflectionToStringBuilder.toString(coll.toArray(), this, true, true));
         depth--;
    }
}
share|improve this answer

I don't know a library by heart, but it's pretty easy with reflection api and some recursion:

printMembers(Object instance) 
  foreach field
    if (field is primitive or String) // guess you're interested in the String value
       printPrimitive(field) 
    else if (field is array or collection)
       foreach item in field
          printmembers(item)
    else
       printmembers(field)            // no primitve, no array, no collection -> object

Getting all fields is not a problem with Java Reflection API. If the field is an array or an instance of Iterable just use the iterator to get all array/collection handlers.

With a custom implementation your free to add special handlers for special objects (like treating String as a primitive) to avoid clutter in the logs.

share|improve this answer
Thanks-- worst case, I can write this myself using reflection. Trying not to do that, if someone's already done it and can paste the code or refer me to a different library... – BestPractices Jun 30 '10 at 14:31

This is something I've written for my personal use. Let me know if it helps:

public static String arrayToString(final Object obj){
    if (obj == null) {
        return "<null>";
    }
    else {
        Object array = null;
        if (obj instanceof Collection) {
            array = ((Collection) obj).toArray();
        }
        else if (obj.getClass().isArray()) {
            array = obj;
        }
        else {
            return notNull(obj);
        }
        int length = Array.getLength(array);
        int lastItem = length - 1;
        StringBuffer sb = new StringBuffer("[");
        for (int i = 0; i < length; i++) {
            sb.append(arrayToString(Array.get(array, i)));
            if (i < lastItem) {
                sb.append(", ");
            }
        }
        sb.append(']');
        return sb.toString();
    }
}
share|improve this answer

This link ended up being a good starting point. You basically need something that's recursive but won't get lost in cyclic-references (Object A has a reference to Object B which has reference back to Object A; you dont want to get stuck traversing that over and over again).

http://www.java2s.com/Code/Java/Class/Constructsprettystringrepresentationofobjectvalue.htm

This was also somewhat helpful as well

http://binkley.blogspot.com/2007/08/recursive-tostring.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.